10 lines
227 B
C#
10 lines
227 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace LANCommander.Client.Data.Models
|
|
{
|
|
[Table("Collections")]
|
|
public class Collection : BaseTaxonomyModel
|
|
{
|
|
}
|
|
}
|