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

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