using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace API.Controllers.DTOs; /// /// The DTO /// public record Author(string Key, string Name) : Identifiable(Key) { /// /// Name of the Author. /// [Required] [Description("Name of the Author.")] public string Name { get; init; } = Name; }