namespace SoroushAsadi.Models; /// /// 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. /// public class ContentSection { public string Key { get; set; } = ""; public string DataJson { get; set; } = "{}"; public long UpdatedAt { get; set; } }