12 lines
208 B
C#
12 lines
208 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Seasons.Entities
|
|
{
|
|
public partial class Season
|
|
{
|
|
public int? Id { get; set; }
|
|
public string? Active { get; set; }
|
|
}
|
|
}
|