Api/Netina.Domain/Dtos/LargDtos/BasePageLDto.cs

17 lines
695 B
C#

using Newtonsoft.Json;
namespace Netina.Domain.Dtos.LargDtos;
public class BasePageLDto : BaseDto<BasePageLDto, BasePage>
{
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 Data { get; set; } = string.Empty;
public string Type { get; set; } = string.Empty;
public DateTime ModifiedAt { get; set; }
public bool Indexing { get; set; }
public List<BasePageSection> Sections { get; set; } = new();
}