Move media statistics to database.

This commit is contained in:
2018-12-21 03:34:54 +00:00
parent a7721f943a
commit c6684c43cc
8 changed files with 1406 additions and 40 deletions

View File

@@ -0,0 +1,13 @@
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; }
}
}