16 lines
406 B
C#
16 lines
406 B
C#
using ServiceStationDataModels.Models;
|
|
using System.ComponentModel;
|
|
|
|
namespace ServiceStationContracts.ViewModels
|
|
{
|
|
public class TaskViewModel : ITaskModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
[DisplayName("Наименование задачи")]
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Стоимость задачи")]
|
|
public double Price { get; set; }
|
|
}
|
|
} |