sockscape/server/DAL/Session.cs

19 lines
399 B
C#
Raw Normal View History

2017-06-05 12:20:39 +00:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
2017-06-05 12:20:39 +00:00
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CircleScape.DAL {
public partial class Session {
public long Id { get; set; }
2017-06-05 12:20:39 +00:00
[ForeignKey("User")]
public int UserId { get; set; }
public virtual User User { get; set; }
2017-06-05 12:20:39 +00:00
}
}