34 lines
920 B
C#
34 lines
920 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Configuration;
|
|
|
|
|
|
namespace CommonAD.Models
|
|
{
|
|
public class MyADObject
|
|
{
|
|
public string stafflinkNo { get; set; }
|
|
public string firstName { get; set; }
|
|
public string lastName { get; set; }
|
|
public string email { get; set; }
|
|
public string company { get; set; }
|
|
public string location { get; set; }
|
|
public string department { get; set; }
|
|
public string jobTitle { get; set; }
|
|
public string badPwdCount { get; set; }
|
|
public string phone { get; set; }
|
|
public string displayName { get; set; }
|
|
public string manager { get; set; }
|
|
public string reportsTo { get; set; }
|
|
public string staffList { get; set; }
|
|
public string managerDetails { get; set; }
|
|
public bool result { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|