16 lines
378 B
C#
Raw Normal View History

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; }
public string Name { get; set; } = string.Empty;
2024-08-22 20:40:32 +04:00
public double Price { get; set; }
}
}