using static PokemonSleepWeb.Client.Utility.StaticDetails; namespace PokemonSleepWeb.Client.Models { public class RequestDto { public ApiType ApiType { get; set; } = ApiType.GET; public string Url { get; set; } public object Data { get; set; } public string AccessToken { get; set; } } }