Large-scale cleanup of entity and interface classes: - Removed obsolete #if NET/NETFRAMEWORK preprocessor blocks - Unified class/property formatting and indentation - Standardized use of data annotations - Improved nullable reference type handling - Simplified interfaces (IHasEnvelope, IHasReceiver) - Removed redundant and dead code - No changes to business logic or data model These changes modernize and standardize the codebase for easier maintenance and .NET compatibility.
11 lines
193 B
C#
11 lines
193 B
C#
namespace EnvelopeGenerator.Domain.Interfaces
|
|
{
|
|
public interface IHasEnvelope
|
|
{
|
|
Entities.Envelope
|
|
#if nullable
|
|
?
|
|
#endif
|
|
Envelope { get; set; }
|
|
}
|
|
} |