mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
13 lines
335 B
C#
13 lines
335 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DiscImageChef.Database.Models
|
|
{
|
|
public class Filter
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public bool Synchronized { get; set; }
|
|
public ulong Count { get; set; }
|
|
}
|
|
} |