Files
mixtape/zero.Debug/TestData/Modules/GalleryModule.cs
T
2020-08-19 11:22:45 +02:00

15 lines
297 B
C#

using System.Collections.Generic;
using zero.Core.Entities;
namespace zero.TestData
{
public class GalleryModule : Module
{
public List<string> ImageIds { get; set; } = new List<string>();
public bool IsBigger { get; set; }
public bool IsFirstImageBigger { get; set; }
}
}