2024-05-20 19:42:31 -05:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
2024-08-04 17:53:19 -05:00
|
|
|
|
namespace LANCommander.Launcher.Data.Models
|
2024-05-20 19:42:31 -05:00
|
|
|
|
{
|
|
|
|
|
|
[Table("Redistributables")]
|
|
|
|
|
|
public class Redistributable : BaseModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
public string? Description { get; set; }
|
|
|
|
|
|
public string? Notes { get; set; }
|
2025-01-18 22:36:41 -06:00
|
|
|
|
public virtual ICollection<Game>? Games { get; set; } = new List<Game>();
|
2024-05-20 19:42:31 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|