LANCommander.PlaynitePlugin/LANCommander/Data/Models/Platform.cs
2024-06-30 23:10:55 -05:00

9 lines
178 B
C#

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