User.cs
975 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SQLToJSON
{
public class User
{
public int oldId { get; set; }
public string loginId{get;set;}
public string password { get; set; }
public string firstName { get; set; }
public string lastName { get; set; }
public string UserType { get; set; }
public string emailId { get; set; }
public bool isActive { get; set; }
public string securityQuestion { get; set; }
public string securityAnswer { get; set; }
public int creatorId { get; set; }
public DateTime? creationDate{ get; set; }
public int modifierId { get; set; }
public DateTime? modifiedDate { get; set; }
public DateTime? deactivationDate { get; set; }
public string module { get; set; }
public List<UserModules> modules { get; set; }
public List<string> userType { get; set; }
}
}