2025-08-26 19:20:44 +02:00

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