namespace BLAIzor.Models { public class ContentItem { public int Id { get; set; } public int ContentGroupId { get; set; } // FK to ContentGroup public string Title { get; set; } public string Description { get; set; } public string Content { get; set; } public string Language { get; set; } public string Tags { get; set; } // comma-separated tags public bool IsPublished { get; set; } public int Version { get; set; } public DateTime CreatedAt { get; set; } public DateTime LastUpdated { get; set; } public ContentGroup ContentGroup { get; set; } public ICollection Chunks { get; set; } } }