add isinservice property

This commit is contained in:
Ryan Peters 2022-09-14 19:41:09 -04:00
parent 160f5c7130
commit 27a2797aa5

View File

@ -7,5 +7,7 @@
public string Schools { get; set; } public string Schools { get; set; }
public string Schedules { get; set; } public string Schedules { get; set; }
public string Impact { get; set; } public string Impact { get; set; }
public bool IsInService => !Impact.Contains("No Service", StringComparison.OrdinalIgnoreCase);
} }
} }