Files
ASP.NET/01_IntroductionSessions/Session04/Projects/Wiki/Models/Person.cs
T

11 lines
193 B
C#

namespace Wiki.Models
{
public class Person
{
public int Id {get; set;}
public string Name {get; set;}
public DateTime BirthDate{ get; set;}
}
}