2025-07-22 17:03:33 -05:00
|
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
|
|
|
|
|
|
namespace FreeTubeSync.Model.Json;
|
|
|
|
|
|
|
|
|
|
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
|
|
|
|
public class SettingJson
|
|
|
|
|
{
|
|
|
|
|
public string _id { get; set; } = string.Empty;
|
2025-07-24 04:22:15 -05:00
|
|
|
public string value { get; set; }
|
2025-07-22 17:03:33 -05:00
|
|
|
}
|