2024-04-30 01:41:35 +03:00

22 lines
507 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using ServiceStationDataModels;
namespace ServiceStationContracts.BindingModels
{
public class WorkBindingModel : IWorkModel
{
public DateTime Date { get; set; } = DateTime.Now;
public int Price { get; set; }
public WorkStatus Status { get; set; } = WorkStatus.Неизвестно;
public int ExecutorId { get; set; }
public int ReportId { get; set; }
public int CategoryWorkId { get; set; }
public int Id { get; set; }
}
}