Major update
This commit is contained in:
21
divisions/Entities/Division.cs
Normal file
21
divisions/Entities/Division.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Divisions.Entities
|
||||
{
|
||||
public partial class Division
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
public string? Name { get; set; }
|
||||
public int? Season { get; set; }
|
||||
public string? NameShort { get; set; }
|
||||
public string? Link { get; set; }
|
||||
public string? Abbreviation { get; set; }
|
||||
public int? LeagueId { get; set; }
|
||||
public int? SportId { get; set; }
|
||||
public string? HasWildcard { get; set; }
|
||||
public int? SortOrder { get; set; }
|
||||
public int? NumPlayoffTeams { get; set; }
|
||||
public string? Active { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user