Files
mixtape/zero.Debug/TestData/Modules/TextWithImageModule.cs
T

17 lines
289 B
C#
Raw Normal View History

2020-08-19 11:22:45 +02:00
using System;
using zero.Core.Entities;
namespace zero.TestData
{
public class TextWithImageModule : Module
{
public string Headline { get; set; }
public string Text { get; set; }
public string ImageId { get; set; }
public bool IsLeftAligned { get; set; }
}
}