Files
YouTube-Manager/Manager.Data/Models/ApplicationContext/SettingsModel.cs
2025-08-11 00:44:52 +02:00

12 lines
409 B
C#

namespace Manager.Data.Models.ApplicationContext;
public class SettingsModel
{
public required string Key { get; set; }
public required string Name { get; set; }
public required string Description { get; set; }
public Guid? GroupId { get; set; }
public string ValueType { get; set; } = nameof(String);
public object? Value { get; set; }
public object? DefaultValue { get; set; }
}