LANCommander/LANCommander.Launcher.Data/Models/Platform.cs

11 lines
225 B
C#
Raw Permalink Normal View History

2024-07-12 18:34:16 -05:00
using System.ComponentModel.DataAnnotations.Schema;
using System.Text.Json.Serialization;
namespace LANCommander.Launcher.Data.Models
2024-07-12 18:34:16 -05:00
{
[Table("Platforms")]
public class Platform : BaseTaxonomyModel
{
}
}