18 lines
407 B
C#
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>();
|
|
}
|
|
}
|