using System;
using System.Collections.Generic;
using System.Text;

namespace SessionCompanion.Database.Tables
{
    public class Alignment : BaseEntity
    {
        public virtual ICollection<Biography> Biography { get; set; }
    }
}