Files
mixtape/zero.Debug/TestData/Pages/ContentPage.cs
T

18 lines
407 B
C#
Raw Normal View History

2020-05-12 13:42:01 +02:00
using System;
2020-08-20 01:35:08 +02:00
using System.Collections.Generic;
2020-05-12 13:42:01 +02:00
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; }
2020-08-20 01:35:08 +02:00
public List<Module> Modules { get; set; } = new List<Module>();
2020-05-12 13:42:01 +02:00
}
}