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