43 lines
1.5 KiB
C#
43 lines
1.5 KiB
C#
|
|
namespace OnlineSalesAutoCrop.CoreAPI.Models.Responses.Systems
|
|||
|
|
{
|
|||
|
|
public class ThisSystemResponse : ResponseBase
|
|||
|
|
{
|
|||
|
|
public int ThisSystemId { get; set; }
|
|||
|
|
public string Code { get; set; }
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
public string BanglaName { get; set; }
|
|||
|
|
public string Address { get; set; }
|
|||
|
|
public string BanglaAddress { get; set; }
|
|||
|
|
public string PhoneNo { get; set; }
|
|||
|
|
public string MobileNo { get; set; }
|
|||
|
|
public string EmailAddress { get; set; }
|
|||
|
|
public string Website { get; set; }
|
|||
|
|
public string VatRegNo { get; set; }
|
|||
|
|
public decimal VatRate { get; set; }
|
|||
|
|
public bool EnfStgPwd { get; set; }
|
|||
|
|
public short PwdMinLen { get; set; }
|
|||
|
|
public short PwdMaxLen { get; set; }
|
|||
|
|
public short DisallowLastPwds { get; set; }
|
|||
|
|
public short ExpiryDays { get; set; }
|
|||
|
|
public short MaxTryCount { get; set; }
|
|||
|
|
public short LockTime { get; set; }
|
|||
|
|
public string AppVersion { get; set; }
|
|||
|
|
public string AutoLogoutParams { get; set; }
|
|||
|
|
public string PwdReserveWords { get; set; }
|
|||
|
|
public bool LoginIdCantBePassword { get; set; }
|
|||
|
|
public bool PreventAttackPasswordReuse { get; set; }
|
|||
|
|
public bool BatchEnabled { get; set; }
|
|||
|
|
public int BmProcessId { get; set; }
|
|||
|
|
public int PrProcessId { get; set; }
|
|||
|
|
public bool CanEditBatch { get; set; }
|
|||
|
|
public bool CanEditPRProcess { get; set; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public class WOTermsResponse : ResponseBase
|
|||
|
|
{
|
|||
|
|
public int ItemId { get; set; }
|
|||
|
|
public string PaymentTerms { get; set; }
|
|||
|
|
public string TermsAndConditions { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|