Files
Backend-Api/CompanyManagment.App.Contracts/SmsResult/SmsResultViewModel.cs
2024-07-05 21:36:15 +03:30

20 lines
668 B
C#

using System;
namespace CompanyManagment.App.Contracts.SmsResult;
public class SmsResultViewModel
{
public long Id { get; set; }
public int MessageId { get; set; }
public string Status { get; set; }
public string TypeOfSms { get; set; }
public string ContractingPartyName { get; set; }
public string Mobile { get; set; }
public long ContractingPartyId { get; set; }
public long InstitutionContractId { get; set; }
public DateTime CreationDate { get; set; }
public string CreationDateFa { get; set; }
public string Hour { get; set; }
public string Minute { get; set; }
public string HourAndMinute { get; set; }
}