|
using static PokemonSleep.Web.Utility.StaticDetails;
|
|
|
|
namespace PokemonSleep.Web.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; }
|
|
}
|
|
}
|