rdt-client/server/RdtClient.Data/Models/Data/Setting.cs
Roger Far cd6002b5d6 Upgrade packages
Moved C# code to file scoped namespaces
Merged Startup.cs and Program.cs
2022-04-30 11:22:15 -06:00

13 lines
No EOL
241 B
C#

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