LANCommander/LANCommander.Launcher.Data/Models/Redistributable.cs
2025-01-18 22:36:41 -06:00

13 lines
408 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace LANCommander.Launcher.Data.Models
{
[Table("Redistributables")]
public class Redistributable : BaseModel
{
public string Name { get; set; }
public string? Description { get; set; }
public string? Notes { get; set; }
public virtual ICollection<Game>? Games { get; set; } = new List<Game>();
}
}