sockscape/server/DAL/Session.cs

30 lines
653 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;
2017-06-06 21:13:25 +00:00
using System.Net;
2017-06-05 12:20:39 +00:00
using System.Text;
using System.Threading.Tasks;
2017-07-22 19:27:41 +00:00
namespace SockScape.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-08-21 21:03:32 +00:00
2017-06-06 21:13:25 +00:00
protected string RawIp { get; set; }
2017-08-21 21:03:32 +00:00
[NotMapped]
2017-06-06 21:13:25 +00:00
public IPAddress Ip {
2017-08-21 21:03:32 +00:00
get => IPAddress.Parse(RawIp);
set => RawIp = value.ToString();
2017-06-06 21:13:25 +00:00
}
2017-06-05 12:20:39 +00:00
2017-06-06 21:13:25 +00:00
public int ServerId { get; set; }
}
}