- Introduced a new `UserQuery` record to encapsulate user-related information, replacing individual fields in `EnvelopeQuery`. - Added a `ReferenceType` property in `EnvelopeHistoryQuery` to enhance reference handling logic. - Modified `EnvelopeQuery` to use the new `UserQuery` structure, simplifying the data model. - Updated `HistoryController` with a new constructor and restructured the `GetReferenceTypes` method. - Introduced `ReadEnvelopeHistoryQuery` to allow for more specific envelope history queries. - Overall improvements enhance code structure, clarity, and querying capabilities.
6 lines
146 B
C#
6 lines
146 B
C#
namespace EnvelopeGenerator.Application.Envelopes;
|
|
|
|
public record UserQuery(int? Id = null, string? Username = null, string? Email = null)
|
|
{
|
|
}
|