EnVisageOnline/Main/Source/IntegrationTests/Models/User.cs

27 lines
937 B
C#

using System;
using System.Collections.Generic;
namespace IntegrationTests.Models
{
public partial class User
{
public System.Guid Id { get; set; }
public int Type { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string MiddleInit { get; set; }
public string EmailAddress { get; set; }
public string Phone { get; set; }
public string Fax { get; set; }
public string MobilePhone { get; set; }
public System.DateTime LastLoginDate { get; set; }
public System.DateTime CreateDate { get; set; }
public string CreatedBy { get; set; }
public System.DateTime LastUpdateDate { get; set; }
public int UserStatus { get; set; }
public Nullable<int> ModifiedBy { get; set; }
}
}