12 lines
286 B
C#
12 lines
286 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
using DCGEngine.Database.Models;
|
|
|
|
namespace SVSim.Database.Models;
|
|
|
|
public class ClassEntry : BaseEntity<int>
|
|
{
|
|
/// <summary>
|
|
/// The name of the class.
|
|
/// </summary>
|
|
public string Name { get; set; } = string.Empty;
|
|
} |