LANCommander/LANCommander.Server.Data/Models/Engine.cs

10 lines
181 B
C#
Raw Permalink Normal View History

2024-03-29 17:19:42 -05:00
using System.ComponentModel.DataAnnotations.Schema;
2024-08-04 18:44:33 -05:00
namespace LANCommander.Server.Data.Models
2024-03-29 17:19:42 -05:00
{
[Table("Engines")]
public class Engine : BaseTaxonomyModel
2024-03-29 17:19:42 -05:00
{
}
}