mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 09:37:45 +00:00
13 lines
220 B
C#
13 lines
220 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace MusicStore.Models
|
|
{
|
|
public class Artist
|
|
{
|
|
public int ArtistId { get; set; }
|
|
|
|
[Required]
|
|
public string Name { get; set; }
|
|
}
|
|
}
|