refactor(Envelope): make EnvelopeType nullable for only .net
This commit is contained in:
parent
a09ea990ab
commit
c27337a6f5
@ -126,7 +126,11 @@ public class Envelope
|
||||
public User User { get; set; }
|
||||
|
||||
[ForeignKey("EnvelopeTypeId")]
|
||||
public EnvelopeType EnvelopeType { get; set; }
|
||||
public virtual EnvelopeType
|
||||
#if NET
|
||||
?
|
||||
#endif
|
||||
EnvelopeType { get; set; }
|
||||
|
||||
#if NETFRAMEWORK
|
||||
[NotMapped]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user