34 lines
922 B
C#
34 lines
922 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Configuration;
|
|
|
|
|
|
namespace CommonAuth.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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|