Advertisement
Guest User

user.cs

a guest
Nov 22nd, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.98 KB | None | 0 0
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. //     This code was generated from a template.
  4. //
  5. //     Manual changes to this file may cause unexpected behavior in your application.
  6. //     Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9.  
  10. namespace Gabinet.Models
  11. {
  12.     using System;
  13.     using System.Collections.Generic;
  14.    
  15.     public partial class User
  16.     {
  17.         public User()
  18.         {
  19.             this.Visit = new HashSet<Visit>();
  20.         }
  21.    
  22.         public int ID { get; set; }
  23.         public string Name { get; set; }
  24.         public string Surname { get; set; }
  25.         public string Email { get; set; }
  26.         public string PhoneNumber { get; set; }
  27.         public string Password { get; set; }
  28.    
  29.         public virtual ICollection<Visit> Visit { get; set; }
  30.     }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement