sockscape/server/DAL/Origin.cs

19 lines
438 B
C#
Raw Normal View History

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