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

12 lines
275 B
C#
Raw Permalink Normal View History

using System.ComponentModel.DataAnnotations.Schema;
namespace LANCommander.Client.Data.Models
{
[Table("Engines")]
public class Engine : BaseModel
{
public string Name { get; set; }
public virtual ICollection<Game> Games { get; set; }
}
}