Api/NetinaShop.Domain/Entities/Pages/BasePageEntity.cs

16 lines
553 B
C#
Raw Normal View History

using System.Text.Json;
namespace NetinaShop.Domain.Entities.Pages;
2024-02-12 22:01:15 +03:30
public class BasePageEntity
{
public Guid Id { get; set; }
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;
}