geekbot/Geekbot.net/Database/Models/GlobalsModel.cs

18 lines
388 B
C#
Raw Normal View History

2018-05-13 14:14:50 +02:00
using System.ComponentModel.DataAnnotations;
namespace Geekbot.net.Database.Models
{
public class GlobalsModel
{
[Key]
public int Id { get; set; }
[Required]
public string Name { get; set; }
[Required]
public string Value { get; set; }
public string Meta { get; set; }
}
}