13 lines
299 B
C#
13 lines
299 B
C#
|
using ServiceStationDataModels.Models;
|
|||
|
using System.ComponentModel;
|
|||
|
|
|||
|
namespace ServiceStationContracts.ViewModels
|
|||
|
{
|
|||
|
public class TaskViewModel : ITaskModel
|
|||
|
{
|
|||
|
[DisplayName("Имя задачи")]
|
|||
|
public string Name { get; set; }
|
|||
|
|
|||
|
public int Id { get; set; }
|
|||
|
}
|
|||
|
}
|