Files
Backend-Api/0_Framework/Application/Sms/ApiResultViewModel.cs
2024-07-05 21:36:15 +03:30

20 lines
584 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; }
}