15 lines
381 B
C#
15 lines
381 B
C#
namespace TIAMWebApp.Shared.Application.Models.ClientSide.UI
|
|
{
|
|
public class TransferStatusModel
|
|
{
|
|
public int StatusValue { get; set; }
|
|
public string StatusName { get; set; }
|
|
|
|
public TransferStatusModel(int statusValue, string statusName)
|
|
{
|
|
StatusValue = statusValue;
|
|
StatusName = statusName;
|
|
}
|
|
}
|
|
}
|