18 lines
665 B
C#
18 lines
665 B
C#
using Netina.Domain.MartenEntities.Pages;
|
|
|
|
namespace Netina.Domain.Dtos.RequestDtos;
|
|
|
|
public class PageActionRequestDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Title { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public string Content { get; set; } = string.Empty;
|
|
public bool IsCustomPage { get; set; }
|
|
public bool IsHtmlBasePage { get; set; }
|
|
public string Slug { get; set; } = string.Empty;
|
|
public string Type { get; set; } = string.Empty;
|
|
public object? Data { get; set; }
|
|
public bool Indexing { get; set; }
|
|
public List<BasePageSection> Sections { get; set; } = new();
|
|
} |