tesses-cms/Tesses.CMS.Client/Season.cs

22 lines
621 B
C#
Raw Permalink Normal View History

2024-07-28 22:59:28 +00:00
using System;
using Newtonsoft.Json;
namespace Tesses.CMS.Client
{
public class Season
{
[JsonProperty("proper_name")]
public string ProperName {get;set;}="";
[JsonProperty("name")]
public string Name {get;set;}="";
[JsonProperty("season_number")]
public int SeasonNumber {get;set;}
[JsonProperty("creation_time")]
public DateTime CreationTime {get;set;}
[JsonProperty("last_updated_time")]
public DateTime LastUpdated {get;set;}
[JsonProperty("description")]
public string Description {get;set;}="";
}
}