namespace Netina.Domain.MartenEntities.Settings; public class PageSetting { public List RedirectItems { get; set; } = new(); public List DeletedPages { get; set; } = new(); } public class DeletedPageItem { public string Url { get; set; } = string.Empty; } public class RedirectItem { public string OldUrl { get; set; } = string.Empty; public string NewUrl { get; set; } = string.Empty; }