sockscape/server/DAL/Session.cs

25 lines
772 B
C#
Raw Normal View History

2017-08-22 20:59:41 +00:00
//------------------------------------------------------------------------------
// <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>
//------------------------------------------------------------------------------
2017-06-05 12:20:39 +00:00
2017-08-22 20:59:41 +00:00
namespace SockScape.DAL
{
using System;
using System.Collections.Generic;
public partial class Session
{
public int Id { get; set; }
public byte[] Secret { get; set; }
public long UserId { get; set; }
2017-06-06 21:13:25 +00:00
public int ServerId { get; set; }
2017-08-22 20:59:41 +00:00
public virtual User User { get; set; }
}
}