Files
mixtape/zero.Core/Entities/Pages/Page.cs
T

12 lines
256 B
C#
Raw Normal View History

2020-03-24 23:09:29 +01:00
namespace zero.Core.Entities
2020-03-23 11:57:07 +01:00
{
/// <summary>
/// A page can consist of unlimited properties and be rendered as you wish
/// The backoffice rendering is done by an IRenderer
/// </summary>
public abstract class Page : DatabaseEntity
{
}
}