source: KernelRecordsMVC.Application/ViewModels/CreateArtistViewModel.cs@ 595d2e5

main
Last change on this file since 595d2e5 was d89d25b, checked in by mmilevski <markomilevski3@…>, 4 weeks ago

Added few implementaions, minor UI changes.

  • Property mode set to 100644
File size: 448 bytes
Line 
1using System.ComponentModel.DataAnnotations;
2
3namespace KernelRecordsMVC.Application.ViewModels;
4
5public class CreateArtistViewModel
6{
7 [Required]
8 [StringLength(200)]
9 [Display(Name = "Artist Name")]
10 public string ArtistName { get; set; } = string.Empty;
11
12 [Display(Name = "Description")]
13 public string? ArtistDescription { get; set; }
14
15 [Display(Name = "Artist Photo URL")]
16 public string? ArtistPhoto { get; set; }
17}
Note: See TracBrowser for help on using the repository browser.