15 lines
334 B
C#
15 lines
334 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SessionCompanion.Database.Tables
|
|
{
|
|
public class Class : BaseEntity
|
|
{
|
|
public string Name { get; set; }
|
|
//public int HitDie { get; set; }
|
|
|
|
public virtual ICollection<Biography> Biography { get; set; }
|
|
}
|
|
}
|