TourIAm/TIAMWebApp/Shared/Models/ClientSide/UI/TransferStatusModel.cs

15 lines
383 B
C#

namespace TIAMWebApp.Shared.Application.Models.ClientSide.UI
{
public class TransferStatusModel
{
public byte StatusValue { get; set; }
public string StatusName { get; set; }
public TransferStatusModel(byte statusValue, string statusName)
{
StatusValue = statusValue;
StatusName = statusName;
}
}
}