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; } } }