2024-07-12 18:34:16 -05:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
2024-08-04 17:53:19 -05:00
|
|
|
|
namespace LANCommander.Launcher.Data.Models
|
2024-07-12 18:34:16 -05:00
|
|
|
|
{
|
|
|
|
|
|
[Table("Platforms")]
|
|
|
|
|
|
public class Platform : BaseTaxonomyModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
[JsonIgnore]
|
|
|
|
|
|
public virtual ICollection<Game> Games { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|