-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from faskowbn/bfaskowitz/add_schedule_status
Add StatusCode to understand where we are in the game
- Loading branch information
Showing
3 changed files
with
42 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace BaseballSharp.Enums; | ||
/// <summary> | ||
/// Represents the status of the game using predefined status codes. Note that there may be more codes than these -- | ||
/// these are the status codes observed manually. | ||
/// </summary> | ||
public enum GameStatus | ||
{ | ||
Final, // "F" | ||
InProgress, // "I" | ||
Delayed, // "IR" | ||
PreGame, // "P" | ||
Scheduled // "S" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters