using System; using System.Collections.Generic; namespace SUISS.Cloud { public interface IGameInfo { IDictionary Data { get; } string Name { get; } } }