I have two classes
public interface IPerson { string Name { get; set; } string Address { get; set; } int? Age { get; set; } } public class Person