17 lines
335 B
C#
Raw Normal View History

2018-03-14 13:22:04 -05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2018-04-08 01:44:42 -05:00
using static SharedLibraryCore.Server;
2018-03-14 13:22:04 -05:00
2018-04-08 01:44:42 -05:00
namespace SharedLibraryCore.Configuration
2018-03-14 13:22:04 -05:00
{
public class MapConfiguration
{
public Game Game { get; set; }
public List<Map> Maps { get; set; }
}
}