19 lines
428 B
19 lines
428 B
5 years ago
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace CK.SCP.Models.AppBoxEntity
|
||
|
{
|
||
|
public class Config : IKeyID
|
||
|
{
|
||
|
[Key]
|
||
|
public int ID { get; set; }
|
||
|
|
||
|
[Required, StringLength(50)]
|
||
|
public string ConfigKey { get; set; }
|
||
|
|
||
|
[Required, StringLength(4000)]
|
||
|
public string ConfigValue { get; set; }
|
||
|
|
||
|
[StringLength(500)]
|
||
|
public string Remark { get; set; }
|
||
|
}
|
||
|
}
|