diff --git a/EnvelopeGenerator.Domain/Entities/Envelope.cs b/EnvelopeGenerator.Domain/Entities/Envelope.cs index 5ba90338..479d7010 100644 --- a/EnvelopeGenerator.Domain/Entities/Envelope.cs +++ b/EnvelopeGenerator.Domain/Entities/Envelope.cs @@ -76,11 +76,14 @@ namespace EnvelopeGenerator.Domain.Entities #if nullable ? #endif - Title - { get; set; } + Title { get; set; } [Column("COMMENT", TypeName = "nvarchar(128)")] - public string Comment { get; set; } + public string +#if nullable + ? +#endif + Comment { get; set; } [Column("CONTRACT_TYPE")] public int? ContractType { get; set; }