2025-03-23 11:04:45 +03:30
|
|
|
|
using Netina.Domain.MartenEntities.Pages;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Netina.Domain.Dtos.RequestDtos;
|
2024-02-12 22:01:15 +03:30
|
|
|
|
|
|
|
|
|
|
public class PageActionRequestDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid Id { get; set; }
|
2024-05-14 12:46:11 +03:30
|
|
|
|
public string Title { get; set; } = string.Empty;
|
2024-02-12 22:01:15 +03:30
|
|
|
|
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; }
|
2025-03-23 11:04:45 +03:30
|
|
|
|
public bool Indexing { get; set; }
|
|
|
|
|
|
public List<BasePageSection> Sections { get; set; } = new();
|
2024-02-12 22:01:15 +03:30
|
|
|
|
}
|