This commit is contained in:
Noah Spannbauer
2023-02-15 12:46:50 -06:00
parent c2d8bd1838
commit 0d5eb3e801
99 changed files with 20124 additions and 213 deletions

32
teams/Entities/Team.cs Normal file
View File

@@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
namespace Teams.Entities
{
public partial class Team
{
public int? SpringLeagueId { get; set; }
public string? AllStarStatus { get; set; }
public int? Id { get; set; }
public string? Name { get; set; }
public string? Link { get; set; }
public int? Season { get; set; }
public int? VenueId { get; set; }
public int? SpringVenueId { get; set; }
public string? TeamCode { get; set; }
public string? FileCode { get; set; }
public string? Abbreviation { get; set; }
public string? TeamName { get; set; }
public string? LocationName { get; set; }
public int? FirstYearOfPlay { get; set; }
public int? LeagueId { get; set; }
public int? DivisionId { get; set; }
public int? SportId { get; set; }
public string? ShortName { get; set; }
public string? FranchiseName { get; set; }
public string? ClubName { get; set; }
public string? Active { get; set; }
public int? Venue { get; set; }
public int? SpringVenue { get; set; }
}
}