AuthorBuddy/Data/SettingEntity.cs

13 lines
294 B
C#
Raw Normal View History

2026-05-20 06:12:54 +02:00
using LiteDB;
2026-05-14 12:31:35 +02:00
namespace AuthorBuddy.Web.Data;
public class SettingEntity
{
2026-05-17 07:27:18 +02:00
public int Id { get; set; }
2026-05-14 12:31:35 +02:00
public string Key { get; set; } = string.Empty;
public string Value { get; set; } = string.Empty;
2026-05-17 07:27:18 +02:00
public int? UserId { get; set; }
public int? ProjectId { get; set; }
2026-05-14 12:31:35 +02:00
}