vgquotes/Src/VideoGameQuotes.Web/Models/CreateSystemModel.cs

13 lines
331 B
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace VideoGameQuotes.Web.Models {
public class CreateSystemModel {
[Required]
public string Name { get; set; }
[Required, StringLength(12)]
public string Abbreviation { get; set; }
[Required]
public DateTime ReleaseDate { get; set; }
}
}