rdt-client/server/RdtClient.Data/Models/Data/Setting.cs
2022-05-13 18:51:04 -06:00

11 lines
No EOL
213 B
C#

using System.ComponentModel.DataAnnotations;
namespace RdtClient.Data.Models.Data;
public class Setting
{
[Key]
public String SettingId { get; set; } = null!;
public String? Value { get; set; }
}