24 lines
556 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; }
2024-08-22 20:40:32 +04:00
public int[] client_ids { get; set; } = new int[0];
2024-08-16 13:44:43 +04:00
}
}