Added RT Module read method

This commit is contained in:
Samuele Locatelli
2020-05-30 12:46:21 +02:00
parent c47e07a7ed
commit 3287eccd70
3 changed files with 218 additions and 38 deletions
+5 -5
View File
@@ -626,11 +626,11 @@ namespace CMS_CORE_Library.Models
public class ModuleBlock
{
public ushort Id { get; set; } = 0;
public uint ActualDelay { get; set; } = 0;
public uint ActualDuration { get; set; } = 0;
public uint EstimatedDelay { get; set; } = 0;
public uint EstimatedDuration { get; set; } = 0;
public short Id { get; set; } = 0;
public int ActualDelay { get; set; } = 0;
public int ActualDuration { get; set; } = 0;
public int EstimatedDelay { get; set; } = 0;
public int EstimatedDuration { get; set; } = 0;
public List<ushort> PrecedingId { get; set; } = new List<ushort>();
public bool Visible { get; set; } = false;
public bool Running { get; set; } = false;