2024-08-03 22:26:15 +03:00
|
|
|
|
using ServiceStationDataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ServiceStationContracts.BindingModels {
|
|
|
|
|
public class TaskBindingModel : ITaskModel {
|
2024-08-10 18:43:15 +04:00
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
2024-08-03 22:26:15 +03:00
|
|
|
|
public string Name { get; set; } = string.Empty;
|
2024-08-22 20:40:32 +04:00
|
|
|
|
public double Price { get; set; }
|
|
|
|
|
}
|
2024-08-03 22:26:15 +03:00
|
|
|
|
}
|