LANCommander/LANCommander.Client.Data/Models/Engine.cs

10 lines
181 B
C#
Raw Normal View History

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