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