Plain Old CLR Object
From Wikipedia, the free encyclopedia
実例(C#)
class Person
{
public int Id { get; set; }
public string Name { get; set; }
public DateTime BirthDate { get; set; }
}
From Wikipedia, the free encyclopedia
class Person
{
public int Id { get; set; }
public string Name { get; set; }
public DateTime BirthDate { get; set; }
}