2024-05-20 19:42:31 -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-05-20 19:42:31 -05:00
|
|
|
|
{
|
|
|
|
|
|
[Table("Collections")]
|
2024-07-11 18:33:07 -05:00
|
|
|
|
public class Collection : BaseTaxonomyModel
|
2024-05-20 19:42:31 -05:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|