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

10 lines
185 B
C#
Raw Normal View History

2024-06-30 23:10:55 -05:00
using System.ComponentModel.DataAnnotations.Schema;
2024-08-04 18:44:33 -05:00
namespace LANCommander.Server.Data.Models
2024-06-30 23:10:55 -05:00
{
[Table("Platforms")]
public class Platform : BaseTaxonomyModel
{
}
}