9 lines
181 B
C#
9 lines
181 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace LANCommander.Server.Data.Models
|
|
{
|
|
[Table("Engines")]
|
|
public class Engine : BaseTaxonomyModel
|
|
{
|
|
}
|
|
}
|