Logo white

ADAM / AIAHTML5

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues
  • Merge Requests 14
  • Labels
  • Wiki
  • Snippets
  • AIAHTML5
  • 400-SOURCECODE
  • AIAHTML5.WebAPI
  • Models
  • User.cs
  • Authentication integrated but facing issue in communicating with web api
    81d7337f
    Amrita Vishnoi authored
    2016-05-03 13:32:26 +0530  
    Browse Code »
User.cs 425 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
using System.Collections.Generic;

namespace AIAHTML5.WebAPI.Models
{
    public class User
    {
        public User()
        {
            Roles = new List<UserRole>();
        }
        public int Id { get; set; }
        public string userName { get; set; }
        public string password { get; set; }
        public string Salt { get; set; }

        public virtual ICollection<UserRole> Roles { get; set; }
    }
}