18 lines
470 B
C#
18 lines
470 B
C#
using ClientsContracts.BusinessLogicContracts;
|
|
using ClientsDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ClientsContracts.ViewModels
|
|
{
|
|
public class StatusViewModel : IStatusModel
|
|
{
|
|
public int Id { get; set; }
|
|
[DisplayName("Название")]
|
|
public string StatusName { get; set; } = string.Empty;
|
|
}
|
|
} |