using System.ComponentModel.DataAnnotations; namespace KernelRecordsMVC.Application.ViewModels; public class CreateArtistViewModel { [Required] [StringLength(200)] [Display(Name = "Artist Name")] public string ArtistName { get; set; } = string.Empty; [Display(Name = "Description")] public string? ArtistDescription { get; set; } [Display(Name = "Artist Photo URL")] public string? ArtistPhoto { get; set; } }