21 lines
509 B
C#
21 lines
509 B
C#
namespace CompanyManagment.App.Contracts.TemporaryClientRegistration;
|
|
|
|
public class RegistrationWorkflowMainList
|
|
{
|
|
/// <summary>
|
|
/// آی دی طرف حساب ثبت شده موقت
|
|
/// </summary>
|
|
public long ContractingPartyTempId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// نام کامل طرف حساب
|
|
/// </summary>
|
|
public string ContractingPartyFullName { get; set; }
|
|
|
|
/// <summary>
|
|
/// شماره همراه
|
|
/// </summary>
|
|
public string Phone { get; set; }
|
|
|
|
} |