Added backend API project to segregate responsibilites - Data is now handled in API project and business is all handled in UI project.
This commit is contained in:
@ -1,8 +1,12 @@
|
||||
namespace ReportingServices.Shared.Models.ProductionReport
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace ReportingServices.Shared.Models.ProductionReport
|
||||
{
|
||||
public class EquipmentStateByDay
|
||||
{
|
||||
[JsonPropertyName("StartTime")]
|
||||
public string StartTime { get; set; }
|
||||
[JsonPropertyName("AvailablePct")]
|
||||
public string AvailablePct { get; set; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user