sockscape/server/DAL/Session.cs
2017-06-05 07:20:39 -05:00

19 lines
399 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CircleScape.DAL {
public partial class Session {
public long Id { get; set; }
[ForeignKey("User")]
public int UserId { get; set; }
public virtual User User { get; set; }
}
}