Guest User

Untitled

a guest
Jan 22nd, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace iNailedit.Business.Entities
  7. {
  8. public interface IUser
  9. {
  10. object UserID { get; set; }
  11. string UserName { get; set; }
  12. string Email { get; set; }
  13.  
  14. IEnumerable<ITaskList> TaskLists { get; set; }
  15. }
  16. }
Add Comment
Please, Sign In to add comment