18 lines
438 B
C#
18 lines
438 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 Origin {
|
|
public long Id { get; set; }
|
|
|
|
[ForeignKey("User")]
|
|
public long UserId { get; set; }
|
|
public virtual User User { get; set; }
|
|
|
|
public string Ip { get; set; }
|
|
}
|
|
}
|