35 lines
816 B
C#
35 lines
816 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace EnVisage.Models
|
|
{
|
|
public class PeopleResourceAPIModel
|
|
{
|
|
|
|
public string FirstName { get; set; }
|
|
|
|
public string LastName { get; set; }
|
|
|
|
public string EmailAddress { get; set; }
|
|
|
|
public string EmployeeID { get; set; }
|
|
|
|
public bool IsActiveEmployee { get; set; }
|
|
|
|
public bool ReassignOnDeactivation { get; set; }
|
|
|
|
public DateTime? StartDate { get; set; }
|
|
|
|
public DateTime? EndDate { get; set; }
|
|
|
|
public string CreditNumber { get; set; }
|
|
public string JobCode { get; set; }
|
|
public string Title { get; set; }
|
|
public int LineNumber { get; set; }
|
|
public string ProcessReturnMessage { get; set; }
|
|
|
|
|
|
}
|
|
} |