Registers the set endpoint in the endpoint factory

This commit is contained in:
Serraniel 2023-02-12 23:07:40 +01:00
parent 10cd18261d
commit bf32379254
Signed by: Serraniel
GPG key ID: 3690B4E7364525D3

View file

@ -5,6 +5,11 @@ namespace JpnCardsPokemonSdk.Api;
public class Set : EndpointObject
{
static Set()
{
EndpointFactory.RegisterTypeEndpoint<Set>(new SetEndpoint());
}
public string? Name { get; set; }
public int Id { get; set; }