11 lines
309 B
C#
11 lines
309 B
C#
|
|
using System.Diagnostics.CodeAnalysis;
|
||
|
|
|
||
|
|
namespace FreeTubeSync.Model.Json;
|
||
|
|
|
||
|
|
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
||
|
|
public class SubscriptionJson
|
||
|
|
{
|
||
|
|
public string id { get; set; } = string.Empty;
|
||
|
|
public string name { get; set; } = string.Empty;
|
||
|
|
public string? thumbnail { get; set; }
|
||
|
|
}
|