54 lines
1.4 KiB
C#
54 lines
1.4 KiB
C#
using System;
|
||
|
||
namespace CompanyManagment.App.Contracts.Employer;
|
||
|
||
/// <summary>
|
||
/// اطلاعات سامانه های دولتی
|
||
/// </summary>
|
||
public class GovernmentSystemInfo
|
||
{
|
||
#region MCL
|
||
/// <summary>
|
||
/// نام کاربری اداره کار
|
||
/// </summary>
|
||
public string MclUsername { get; set; }
|
||
/// <summary>
|
||
/// رمز عبور اداره کار
|
||
/// </summary>
|
||
public string MclPassword { get; set; }
|
||
#endregion
|
||
|
||
#region E-Service تامین اجتماعی
|
||
/// <summary>
|
||
/// نام کاربری سازمان تامین اجتماعی
|
||
/// </summary>
|
||
public string EServiceUsername { get; set; }
|
||
/// <summary>
|
||
/// رمز عبور سازمان تامین اجتماعی
|
||
/// </summary>
|
||
public string EServicePassword { get; set; }
|
||
#endregion
|
||
|
||
#region Tax سامانه مالیاتی
|
||
/// <summary>
|
||
/// نام کاربری سامانه مالیاتی
|
||
/// </summary>
|
||
public string TaxUsername { get; set; }
|
||
/// <summary>
|
||
/// رمز عبور سامانه مالیاتی
|
||
/// </summary>
|
||
public string TaxPassword { get; set; }
|
||
#endregion
|
||
|
||
#region Sana سامانه ثنا
|
||
/// <summary>
|
||
/// نام کاربری ثنا
|
||
/// </summary>
|
||
public string SanaUsername { get; set; }
|
||
/// <summary>
|
||
/// رمز عبور ثنا
|
||
/// </summary>
|
||
public string SanaPassword { get; set; }
|
||
#endregion
|
||
|
||
} |