Files
Backend-Api/0_Framework/Application/Sms/ApiResultViewModel.cs
2026-01-07 18:38:12 +03:30

34 lines
881 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _0_Framework.Application.Sms;
public class ApiResultViewModel
{
public int MessageId { get; set; }
public long LineNumber { get; set; }
public long Mobile { get; set; }
public string MessageText { get; set; }
public string SendUnixTime { get; set; }
public string DeliveryState { get; set; }
public string DeliveryUnixTime { get; set; }
public string DeliveryColor { get; set; }
public string FullName { get; set; }
}
public class ApiReportDto
{
public int MessageId { get; set; }
public long Mobile { get; set; }
public string SendUnixTime { get; set; }
public string DeliveryState { get; set; }
public string DeliveryUnixTime { get; set; }
public string DeliveryColor { get; set; }
}