mirror of
https://github.com/lampame/lampac-ukraine.git
synced 2026-04-16 09:22:21 +00:00
14 lines
341 B
C#
14 lines
341 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace CikavaIdeya.Models
|
|
{
|
|
public class SeasonModel
|
|
{
|
|
[JsonPropertyName("season_number")]
|
|
public int SeasonNumber { get; set; }
|
|
|
|
[JsonPropertyName("episodes")]
|
|
public List<EpisodeModel> Episodes { get; set; }
|
|
}
|
|
} |