14 lines
417 B
C#
14 lines
417 B
C#
|
|
namespace SoroushAsadi.Models;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Maps to the existing `sections` SQLite table.
|
||
|
|
/// data column is a JSON string — either {"fa":…,"en":…} for bilingual sections,
|
||
|
|
/// or {"slug": PostContent, …} for the "posts" key.
|
||
|
|
/// </summary>
|
||
|
|
public class ContentSection
|
||
|
|
{
|
||
|
|
public string Key { get; set; } = "";
|
||
|
|
public string DataJson { get; set; } = "{}";
|
||
|
|
public long UpdatedAt { get; set; }
|
||
|
|
}
|