12 lines
361 B
C#
12 lines
361 B
C#
using System;
|
|
|
|
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public record InstitutionCreationVerificationSmsDto
|
|
{
|
|
public string Number{ get; set; }
|
|
public string FullName { get; set; }
|
|
public Guid InstitutionId { get; set; }
|
|
public long ContractingPartyId { get; set; }
|
|
public long InstitutionContractId { get; set; }
|
|
}; |