21 lines
396 B
C#
21 lines
396 B
C#
namespace EnvelopeGenerator.Application.Model;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public interface IHasEnvelopeQuery<TEnvelopeQuery>
|
|
where TEnvelopeQuery : EnvelopeQueryBase
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public TEnvelopeQuery Envelope { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public interface IHasEnvelopeQuery
|
|
: IHasEnvelopeQuery<EnvelopeQueryBase>
|
|
{
|
|
} |