Changed from object to string, as it was to difficult to handle any data field in the value.
10 lines
No EOL
248 B
C#
10 lines
No EOL
248 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace FreeTubeSync.Model.Json;
|
|
|
|
[SuppressMessage("ReSharper", "InconsistentNaming")]
|
|
public class SettingJson
|
|
{
|
|
public string _id { get; set; } = string.Empty;
|
|
public string value { get; set; }
|
|
} |