Files
FA_WEB/SytelineSaAppEfDataModel/Dtos/UserNameDto.cs
Piotr Kus c39cd3a473 * Translated Views
* Added UserName entity, dto and mapping
* Changed some Dtos to use BaseClass
2025-01-29 17:42:42 +01:00

42 lines
1.8 KiB
C#

namespace SytelineSaAppEfDataModel.Dtos;
public class UserNameDto
{
public long UserId { get; set; }
public string Username { get; set; }
public short EditLevel { get; set; }
public bool SuperUserFlag { get; set; }
public string UserPassword { get; set; }
public string SQLServerLogin { get; set; }
public string SQLServerPassword { get; set; }
public string UserDesc { get; set; }
public string WorkstationLogin { get; set; }
public bool NoteExistsFlag { get; set; }
public string CreatedBy { get; set; }
public string UpdatedBy { get; set; }
public DateTime CreateDate { get; set; }
public DateTime RecordDate { get; set; }
public Guid RowPointer { get; set; }
public short ConcurrentSessions { get; set; }
public string ConcurrentSessionsSpec { get; set; }
public bool InWorkflow { get; set; }
public short Status { get; set; }
public DateTime? PasswordExpirationDate { get; set; }
public short LoginFailures { get; set; }
public DateTime? UnlockDate { get; set; }
public bool PasswordNeverExpires { get; set; }
public DateTime? EventMessagesLastCheckedTime { get; set; }
public bool SendEmailPrompts { get; set; }
public string LanguageCode { get; set; }
public string MobileDefaultForm { get; set; }
public bool SendEmailNotifications { get; set; }
public string EmailPromptsEmailType { get; set; }
public string EmailNotificationsEmailType { get; set; }
public string PrimaryEmailType { get; set; }
public string SourceControlUsername { get; set; }
public string SourceControlPassword { get; set; }
public string RfqProfile { get; set; }
public string RfqFaxNum { get; set; }
public string Uf_ZPL_EmpNum { get; set; }
public string Uf_PLT_EmpNum { get; set; }
}