12 lines
294 B
C#
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; }
|
|
}
|