graal-gmap-generator/GraalGmapGenerator/Models/GmapContent.cs

16 lines
No EOL
355 B
C#

using System.Collections.Generic;
namespace GraalGmapGenerator.Models
{
public class GmapContent
{
public string Content { get; }
public IEnumerable<Level> Levels { get; }
public GmapContent(string content, IEnumerable<Level> levels)
{
Content = content;
Levels = levels;
}
}
}