Advertisement
EraCoder

Untitled

Apr 26th, 2018
624
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 0.93 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5.  
  6. namespace DtabaseConnect.Service.Entity
  7. {
  8.     public class Users
  9.     {
  10.         public int id { get; set; }
  11.         public int id_role { get; set; }
  12.         public string email { get; set; }
  13.         public string username { get; set; }
  14.         public int emailconfirmed { get; set; }
  15.         public string password { get; set; }
  16.         public DateTime registration_date { get; set; }
  17.     }
  18.     public class Log_users
  19.     {
  20.         public int id { get; set; }
  21.         public int id_role { get; set; }
  22.         public string email { get; set; }
  23.         public string username { get; set; }
  24.         public int emailconfirmed { get; set; }
  25.         public string password { get; set; }
  26.         public DateTime registration_date { get; set; }
  27.         public string operation { get; set; }
  28.         public DateTime log_date { get; set; }
  29.     }
  30.  
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement