20 lines
547 B
C#
20 lines
547 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Text;
|
|
|
|
namespace SessionCompanion.Database.Tables
|
|
{
|
|
public class Constitution : BaseEntity
|
|
{
|
|
[ForeignKey(nameof(Character))]
|
|
public int CharacterId { get; set; }
|
|
public virtual Character Character { get; set; }
|
|
|
|
public int Value { get; set; }
|
|
public int Modification { get; set; }
|
|
public int SavingThrows { get; set; }
|
|
public bool CanSaveThrows { get; set; }
|
|
}
|
|
}
|