//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace CircleScape.DAL { using System; using System.Collections.Generic; public partial class Users { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public Users() { this.Sessions = new HashSet(); } public long Id { get; set; } public string Username { get; set; } public string Password { get; set; } public Nullable Joined { get; set; } public Nullable LastLogin { get; set; } public long JoinedIp { get; set; } public Nullable LastIp { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Sessions { get; set; } } }