LANCommander/LANCommander.Server.Data/Models/Platform.cs

9 lines
185 B
C#

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