fix(EnvelopeReceiverQueryBase): make Envelope and Receiver properties not null and set default value
This commit is contained in:
parent
f114144d34
commit
c887f857cd
@ -49,10 +49,10 @@ public record EnvelopeReceiverQueryBase<TEnvelopeQuery, TReceiverQuery>
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public virtual TEnvelopeQuery? Envelope { get; init; }
|
public virtual TEnvelopeQuery Envelope { get; init; } = new();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public virtual TReceiverQuery? Receiver { get; init; }
|
public virtual TReceiverQuery Receiver { get; init; } = new();
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user