13 lines
288 B
C#
13 lines
288 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace SessionCompanion.Database.Tables
|
|||
|
{
|
|||
|
public class Race : BaseEntity
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public virtual ICollection<Biography> Biography { get; set; }
|
|||
|
}
|
|||
|
}
|