using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GameModel.Settings { public class AppSettings { public string ApiToken { get; set; } public string ApiBaseUrl { get; set; } } }