C Sharp 2023-08-28 C Sharp - Inheritance Inheritance1234567Public class BaseType { Id: int; // this is the primary key}Public class Employee : BaseType { String LName {get; set;}}