21 lines
498 B
C#
21 lines
498 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|