sockscape/server/DAL/Users.cs

35 lines
1.3 KiB
C#
Raw Normal View History

//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
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<Sessions>();
}
public long Id { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public Nullable<long> Joined { get; set; }
public Nullable<long> LastLogin { get; set; }
public long JoinedIp { get; set; }
public Nullable<long> LastIp { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<Sessions> Sessions { get; set; }
}
}