23 lines
660 B
C#
23 lines
660 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PrevuWebAPI.Models
|
|
{
|
|
public class APINonProjectTimeModel
|
|
{
|
|
public string WorkEmail { get; set; }
|
|
public string Name { get; set; }
|
|
public string LeaveType { get; set; }
|
|
public DateTime LeaveDate { get; set; }
|
|
public int LeaveAmount { get; set; }
|
|
public string RequestStatus { get; set; }
|
|
public string FileNumber { get; set; }
|
|
public string DeptName { get; set; }
|
|
public int DeptNo { get; set; }
|
|
public string PositionStatus{get;set;}
|
|
}
|
|
}
|