Initial commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using FictionArchive.Service.NovelService.Models.Novels;
|
||||
|
||||
namespace FictionArchive.Service.NovelService.Models;
|
||||
|
||||
public class SourceConfiguration : BaseEntity<uint>
|
||||
{
|
||||
public string Key { get; set; }
|
||||
|
||||
[Column(TypeName = "jsonb")]
|
||||
public string Configuration { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user