Files
mixtape/zero.Debug/TestData/Pages/ContentPage.cs
T
2020-08-20 01:35:08 +02:00

18 lines
407 B
C#

using System;
using System.Collections.Generic;
using zero.Core.Entities;
namespace zero.TestData
{
public class ContentPage : Page
{
public MetaPagePartial Meta { get; set; } = new MetaPagePartial();
public OptionsPagePartial Options { get; set; } = new OptionsPagePartial();
public string Text { get; set; }
public List<Module> Modules { get; set; } = new List<Module>();
}
}