16 lines
365 B
C#
16 lines
365 B
C#
|
namespace InfoferScraper.Models.Status {
|
||
|
public interface IStatus {
|
||
|
public int Delay { get; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Determines whether delay was actually reported or is an approximation
|
||
|
/// </summary>
|
||
|
public bool Real { get; }
|
||
|
}
|
||
|
|
||
|
internal record Status : IStatus {
|
||
|
public int Delay { get; set; }
|
||
|
public bool Real { get; set; }
|
||
|
}
|
||
|
}
|