using System; using HRM.BO; namespace HRM.UI.MODELS { public class LocationModel : AuditTrailBase { public LocationModel() { code = string.Empty; } public int ID { get; set; } public string code { get; set; } public double latitude { get; set; } public double longitude { get; set; } } }