Major update
This commit is contained in:
27
leagues/Entities/League.cs
Normal file
27
leagues/Entities/League.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Leagues.Entities
|
||||
{
|
||||
public partial class League
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public string? Name { get; set; }
|
||||
public string? Link { get; set; }
|
||||
public string? Abbreviation { get; set; }
|
||||
public string? NameShort { get; set; }
|
||||
public string? SeasonState { get; set; }
|
||||
public string? HasWildCard { get; set; }
|
||||
public string? HasSplitSeason { get; set; }
|
||||
public int? NumGames { get; set; }
|
||||
public string? HasPlayoffPoints { get; set; }
|
||||
public int? NumTeams { get; set; }
|
||||
public int? NumWildcardTeams { get; set; }
|
||||
public string? OrgCode { get; set; }
|
||||
public string? ConferencesInUse { get; set; }
|
||||
public string? DivisionsInUse { get; set; }
|
||||
public int? SportId { get; set; }
|
||||
public int? SortOrder { get; set; }
|
||||
public string? Active { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user