Files
mlb-gameday-dotnet-react/games/Entities/Game.cs
2023-06-01 08:52:05 -05:00

58 lines
2.6 KiB
C#

using System;
using System.Collections.Generic;
namespace Games.Entities
{
public partial class Game
{
public int GamePk { get; set; }
public string? Link { get; set; }
public string? GameType { get; set; }
public int? Season { get; set; }
public string? GameDate { get; set; }
public DateTime? OfficialDate { get; set; }
public string? StatusAbstractGameState { get; set; }
public string? StatusCodedGameState { get; set; }
public string? StatusDetailedState { get; set; }
public string? StatusStatusCode { get; set; }
public bool? StatusStartTimeTbd { get; set; }
public string? StatusAbstractGameCode { get; set; }
public int? TeamsAwayLeagueRecordWins { get; set; }
public int? TeamsAwayLeagueRecordLosses { get; set; }
public decimal? TeamsAwayLeagueRecordPct { get; set; }
public int? TeamsAwayScore { get; set; }
public int? TeamsAwayTeamId { get; set; }
public bool? TeamsAwayIsWinner { get; set; }
public bool? TeamsAwaySplitSquad { get; set; }
public int? TeamsAwaySeriesNumber { get; set; }
public int? TeamsHomeLeagueRecordWins { get; set; }
public int? TeamsHomeLeagueRecordLosses { get; set; }
public decimal? TeamsHomeLeagueRecordPct { get; set; }
public int? TeamsHomeScore { get; set; }
public int? TeamsHomeTeamId { get; set; }
public bool? TeamsHomeIsWinner { get; set; }
public bool? TeamsHomeSplitSquad { get; set; }
public int? TeamsHomeSeriesNumber { get; set; }
public int? VenueId { get; set; }
public string? ContentLink { get; set; }
public bool? IsTie { get; set; }
public int? GameNumber { get; set; }
public bool? PublicFacing { get; set; }
public string? DoubleHeader { get; set; }
public string? GamedayType { get; set; }
public string? Tiebreaker { get; set; }
public string? CalendarEventId { get; set; }
public int? SeasonDisplay { get; set; }
public string? DayNight { get; set; }
public int? ScheduledInnings { get; set; }
public bool? ReverseHomeAwayStatus { get; set; }
public int? InningBreakLength { get; set; }
public int? GamesInSeries { get; set; }
public int? SeriesGameNumber { get; set; }
public string? SeriesDescription { get; set; }
public string? RecordSource { get; set; }
public string? IfNecessary { get; set; }
public string? IfNecessaryDescription { get; set; }
}
}