using System.Collections.Generic; namespace AIAHTML5.WebAPI.Models { public class User { public User() { Roles = new List(); } public int Id { get; set; } public string userName { get; set; } public string password { get; set; } public string Salt { get; set; } public virtual ICollection Roles { get; set; } } }