Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created January 21, 2023 13:15
public class GetExploitantInput
{
public int? IdIe { get; set; }
public string ExploitantNummer { get; set; }
}
public class GetExploitantInputType : InputObjectType<GetExploitantInput>
{
protected override void Configure(IInputObjectTypeDescriptor<GetExploitantInput> descriptor)
{
descriptor.OneOf();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment