You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
365 B

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; }
}
}