27 lines
739 B
C#
27 lines
739 B
C#
|
using System;
|
|||
|
using HRM.BO;
|
|||
|
|
|||
|
namespace HRM.UI.MODELS
|
|||
|
{
|
|||
|
public class LocationTModel : AuditTrailBase
|
|||
|
{
|
|||
|
public LocationTModel()
|
|||
|
{
|
|||
|
Code = string.Empty;
|
|||
|
Name = string.Empty;
|
|||
|
this.LatLongSetBy = null;
|
|||
|
this.LatLongSetDate = null;
|
|||
|
this.LatLongApproveStatus = null;
|
|||
|
}
|
|||
|
|
|||
|
public int Id { get; set; }
|
|||
|
public string Code { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
public double Latitude { get; set; }
|
|||
|
public double Longitude { get; set; }
|
|||
|
public bool AttendancePoint { get; set; }
|
|||
|
public int? LatLongSetBy { get; set; }
|
|||
|
public DateTime? LatLongSetDate { get; set; }
|
|||
|
public bool? LatLongApproveStatus { get; set; }
|
|||
|
}
|
|||
|
}
|