Major update

This commit is contained in:
2023-06-01 08:52:05 -05:00
parent d7c0f373f4
commit df84287eb2
264 changed files with 8614 additions and 964 deletions

16
sports/Entities/Sport.cs Normal file
View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
namespace Sports.Entities
{
public partial class Sport
{
public int? Id { get; set; }
public string? Code { get; set; }
public string? Link { get; set; }
public string? Name { get; set; }
public string? Abbreviation { get; set; }
public int? SortOrder { get; set; }
public string? ActiveStatus { get; set; }
}
}