AuthorBuddy/Data/SettingEntity.cs
2026-05-20 06:12:54 +02:00

12 lines
294 B
C#

using LiteDB;
namespace AuthorBuddy.Web.Data;
public class SettingEntity
{
public int Id { get; set; }
public string Key { get; set; } = string.Empty;
public string Value { get; set; } = string.Empty;
public int? UserId { get; set; }
public int? ProjectId { get; set; }
}