Created
January 21, 2023 13:15
Revisions
-
wullemsb created this gist
Jan 21, 2023 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ public class GetExploitantInput { public int? IdIe { get; set; } public string ExploitantNummer { get; set; } } This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ public class GetExploitantInputType : InputObjectType<GetExploitantInput> { protected override void Configure(IInputObjectTypeDescriptor<GetExploitantInput> descriptor) { descriptor.OneOf(); } }