refactor(EmailTemplate): adjust namespace declaration for EmailTemplate to support NET and NETFRAMEWORK
This commit is contained in:
@@ -6,7 +6,12 @@ using System;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace EnvelopeGenerator.Domain.Entities
|
namespace EnvelopeGenerator.Domain.Entities
|
||||||
|
#if NET
|
||||||
|
;
|
||||||
|
#elif NETFRAMEWORK
|
||||||
{
|
{
|
||||||
|
#endif
|
||||||
|
|
||||||
[Table("TBSIG_EMAIL_TEMPLATE", Schema = "dbo")]
|
[Table("TBSIG_EMAIL_TEMPLATE", Schema = "dbo")]
|
||||||
public class EmailTemplate
|
public class EmailTemplate
|
||||||
{
|
{
|
||||||
@@ -32,4 +37,7 @@ namespace EnvelopeGenerator.Domain.Entities
|
|||||||
[Column("CHANGED_WHEN", TypeName = "datetime")]
|
[Column("CHANGED_WHEN", TypeName = "datetime")]
|
||||||
public DateTime ChangedWhen { get; set; }
|
public DateTime ChangedWhen { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if NETFRAMEWORK
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
Reference in New Issue
Block a user