From bf32379254796e0d713c609aa1d0c0aca16e1250 Mon Sep 17 00:00:00 2001 From: Serraniel Date: Sun, 12 Feb 2023 23:07:40 +0100 Subject: [PATCH] Registers the set endpoint in the endpoint factory --- src/Api/Set.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Api/Set.cs b/src/Api/Set.cs index 9358072..5cd5c11 100644 --- a/src/Api/Set.cs +++ b/src/Api/Set.cs @@ -5,6 +5,11 @@ namespace JpnCardsPokemonSdk.Api; public class Set : EndpointObject { + static Set() + { + EndpointFactory.RegisterTypeEndpoint(new SetEndpoint()); + } + public string? Name { get; set; } public int Id { get; set; }