Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. public class TransactionExtension : Entity<TransactionExtension> {
  2.  
  3. [Key]
  4. public int Id { get; set; }
  5.  
  6. [StringLength(100)]
  7. public string FieldName { get; set; }
  8.  
  9. [StringLength(25)]
  10. public string FieldType { get; set; }
  11.  
  12. [StringLength(500)]
  13. public string Value { get; set; }
  14.  
  15. public int Ordinal { get; set; }
  16.  
  17. [ForeignKey("Transaction")]
  18. public int? TransactionId { get; set; }
  19.  
  20. public Transaction Transaction { get; set; }
  21.  
  22. public int? Transaction2Id { get; set; }
  23.  
  24. public Transaction2 Transaction2 { get; set; }
  25.  
  26. public int? Transaction3Id { get; set; }
  27.  
  28. public Transaction3 Transaction3 { get; set; }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement