15 lines
286 B
C#
15 lines
286 B
C#
using System;
|
|
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; }
|
|
}
|
|
}
|