17 lines
443 B
C#
17 lines
443 B
C#
namespace Netina.Domain.MartenEntities.Settings;
|
|
|
|
public class PageSetting
|
|
{
|
|
public List<RedirectItem> RedirectItems { get; set; } = new();
|
|
public List<DeletedPageItem> 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;
|
|
} |