13 lines
444 B
C#
13 lines
444 B
C#
|
|
using System.Diagnostics.CodeAnalysis;
|
||
|
|
|
||
|
|
namespace FreeTubeSync.Model.Json;
|
||
|
|
|
||
|
|
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
||
|
|
public class ProfileJson
|
||
|
|
{
|
||
|
|
public string _id { get; set; } = string.Empty;
|
||
|
|
public string name { get; set; } = string.Empty;
|
||
|
|
public string bgColor { get; set; } = string.Empty;
|
||
|
|
public string textColor { get; set; } = string.Empty;
|
||
|
|
public List<SubscriptionJson> subscriptions { get; set; } = [];
|
||
|
|
}
|