Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.71 KB | None | 0 0
  1. [Table("Contact")]
  2.     public class Contact : Entity
  3.     {
  4.         [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
  5.         public int ContactId { get; set; }
  6.        
  7.         public ContactType ContactType { get; set; }
  8.         public string Title { get; set; }
  9.  
  10.         public string EmailAddress { get; set; }
  11.         public string Prefix { get; set; }
  12.         public string Suffix { get; set; }
  13.         public string FirstName { get; set; }
  14.         public string LastName { get; set; }
  15.         public string MiddleName { get; set; }
  16.  
  17.         public string Notes { get; set; }
  18.         public string PreferredName { get; set; }
  19.                
  20.         public Contact()        
  21.         {
  22.         }
  23.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement