11 lines
No EOL
203 B
C#
11 lines
No EOL
203 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; }
|
|
} |