22 lines
262 B
C#
22 lines
262 B
C#
namespace EnvelopeGenerator.Domain.Interfaces
|
|
#if NET
|
|
;
|
|
#elif NETFRAMEWORK
|
|
{
|
|
#endif
|
|
|
|
interface IHasEnvelope
|
|
{
|
|
#if NET
|
|
public
|
|
#endif
|
|
Entities.Envelope
|
|
#if NET
|
|
?
|
|
#endif
|
|
Envelope { get; set; }
|
|
}
|
|
|
|
#if NETFRAMEWORK
|
|
}
|
|
#endif |