User.cs 426 Bytes
using System.Collections.Generic;

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

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