18 lines
522 B
C#
18 lines
522 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace SessionCompanion.Database.Tables
|
|||
|
{
|
|||
|
public class Character : BaseEntity
|
|||
|
{
|
|||
|
[ForeignKey(nameof(User))]
|
|||
|
public int UserId { get; set; }
|
|||
|
public virtual User User { get; set; }
|
|||
|
public virtual Biography Biography { get; set; }
|
|||
|
public virtual Statistics Statistics { get; set; }
|
|||
|
}
|
|||
|
}
|