|
|
@ -6,10 +6,13 @@ namespace InfoferScraper.Models.Status { |
|
|
|
/// Determines whether delay was actually reported or is an approximation |
|
|
|
/// Determines whether delay was actually reported or is an approximation |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
public bool Real { get; } |
|
|
|
public bool Real { get; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public bool Cancelled { get; } |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
internal record Status : IStatus { |
|
|
|
internal record Status : IStatus { |
|
|
|
public int Delay { get; set; } |
|
|
|
public int Delay { get; set; } |
|
|
|
public bool Real { get; set; } |
|
|
|
public bool Real { get; set; } |
|
|
|
|
|
|
|
public bool Cancelled { get; set; } |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|