2024-08-03 22:26:15 +03:00
|
|
|
|
using ServiceStationDataModels.Models;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace ServiceStationContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class TaskViewModel : ITaskModel
|
|
|
|
|
{
|
2024-08-10 18:43:15 +04:00
|
|
|
|
public int Id { get; set; }
|
2024-08-03 22:26:15 +03:00
|
|
|
|
|
2024-08-10 18:43:15 +04:00
|
|
|
|
[DisplayName("Наименование задачи")]
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
2024-08-03 22:26:15 +03:00
|
|
|
|
}
|
|
|
|
|
}
|