using LexWells.Infrastructure.EntityFramework.Entities; namespace NewsArchival.Core.Models; public class Article : BaseEntity { public required string Title { get; set; } public required string Author { get; set; } public required string Url { get; set; } public required string Category { get; set; } public bool SavePictures => IsWarZone; public bool IsWarZone { get; set; } public required string Content { get; set; } }