24 lines
559 B
C#
Raw Normal View History

2024-08-16 13:44:43 +04: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 WorkFromWebBindingModel {
public int Id { get; set; }
public DateTime Date { get; set; } = DateTime.Now;
public double Price { get; set; }
public int ExecutorId { get; set; }
public int TaskId { get; set; }
public string client_ids { get; set; } = string.Empty;
}
}