Api/Netina.Domain/MartenEntities/Pages/BasePage.cs

15 lines
542 B
C#

using Netina.Common.Models.Entity;
namespace Netina.Domain.MartenEntities.Pages;
public class BasePage : MartenEntity
{
public string Name { 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 string Data { get; set; } = string.Empty;
}