17 lines
432 B
C#
17 lines
432 B
C#
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; }
|
|
}
|
|
}
|