25 lines
732 B
C#
25 lines
732 B
C#
|
using HRM.BO;
|
|||
|
|
|||
|
namespace HRM.UI.MODELS
|
|||
|
{
|
|||
|
public class AttendanceLocationTModel : AuditTrailBase
|
|||
|
{
|
|||
|
public AttendanceLocationTModel()
|
|||
|
{
|
|||
|
InTimeNearestAddress = string.Empty;
|
|||
|
OutTimeNearestAddress = string.Empty;
|
|||
|
ZipcodeInTime = string.Empty;
|
|||
|
ZipcodeOutTime = string.Empty;
|
|||
|
}
|
|||
|
|
|||
|
public string InTimeNearestAddress { get; set; }
|
|||
|
public string OutTimeNearestAddress { get; set; }
|
|||
|
public decimal InTimeLatitude { get; set; }
|
|||
|
public decimal OutTimeLatitude { get; set; }
|
|||
|
public decimal InTimeLongitude { get; set; }
|
|||
|
public decimal OutTimeLongitude { get; set; }
|
|||
|
public string ZipcodeInTime { get; set; }
|
|||
|
public string ZipcodeOutTime { get; set; }
|
|||
|
}
|
|||
|
}
|