using System.Collections.Generic; namespace CAPI.Custom.Entities { public class SurfaceLookupCategory : EntityBase { public bool? isActive { get; set; } = false; public string lookupCategory { get; set; } = string.Empty; public ICollection SufaceLookups { get; set; } = new HashSet(); } }