11 lines
209 B
C#

namespace NotebookStudy.ConsoleApp;
public class Person
{
public int Id { get; set; }
public string? Name { get; set; }
public string? Address { get; set; }
public int Age { get; set; }
}