LANCommander/LANCommander.Client.Data/Models/Redistributable.cs
2024-05-21 20:51:09 -05:00

13 lines
386 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace LANCommander.Client.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; }
}
}