14 lines
371 B
C#
14 lines
371 B
C#
using PokemonSleepInterface.Utility;
|
|
using static PokemonSleepInterface.Utility.StaticDetails;
|
|
|
|
namespace PokemonSleepInterface.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; }
|
|
}
|
|
}
|