Updated SettingJson

Changed from object to string, as it was to difficult to handle any data
field in the value.
This commit is contained in:
Mario Steele 2025-07-24 04:22:15 -05:00
parent e670ad5701
commit 904db16461

View file

@ -6,5 +6,5 @@ namespace FreeTubeSync.Model.Json;
public class SettingJson
{
public string _id { get; set; } = string.Empty;
public object value { get; set; }
public string value { get; set; }
}