AuthorBuddy/Data/SettingEntity.cs
2026-05-14 12:31:35 +02:00

14 lines
314 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace AuthorBuddy.Web.Data;
[Table("Settings")]
public class SettingEntity
{
[Key]
public string Key { get; set; } = string.Empty;
[Required]
public string Value { get; set; } = string.Empty;
}