Skip to content

Instantly share code, notes, and snippets.

public class Customer
{
public int Id { get; set; }
public string Name { get; set; }
public string SurName { get; set; }
public DateTime DateOfBirth { get; set; }
public string HighSchool { get; set; }
public string University { get; set; }
}