15 lines
308 B
C#
15 lines
308 B
C#
using System;
|
|
|
|
namespace FinlyticCore.Dtos.Settings;
|
|
|
|
/// <summary>
|
|
/// Repräsentiert eine dynamische Einstellung für das Web-UI und MQTT-RPC.
|
|
/// </summary>
|
|
public record DynamicSettingDto(
|
|
string Key,
|
|
object? Value,
|
|
string Type,
|
|
string Description = "",
|
|
DateTime? UpdatedAt = null
|
|
);
|