refactor(EmailTemplate): adjust namespace declaration for EmailTemplate to support NET and NETFRAMEWORK

This commit is contained in:
2025-08-19 14:35:35 +02:00
parent 4251a24fe9
commit a2471a0c35

View File

@@ -6,7 +6,12 @@ using System;
#endif
namespace EnvelopeGenerator.Domain.Entities
#if NET
;
#elif NETFRAMEWORK
{
#endif
[Table("TBSIG_EMAIL_TEMPLATE", Schema = "dbo")]
public class EmailTemplate
{
@@ -32,4 +37,7 @@ namespace EnvelopeGenerator.Domain.Entities
[Column("CHANGED_WHEN", TypeName = "datetime")]
public DateTime ChangedWhen { get; set; }
}
#if NETFRAMEWORK
}
#endif