LANCommander/LANCommander.Server/Data/Models/Engine.cs
2024-08-04 18:44:33 -05:00

9 lines
181 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace LANCommander.Server.Data.Models
{
[Table("Engines")]
public class Engine : BaseTaxonomyModel
{
}
}