Migrate server from ASP.NET Webforms to MVC.

This commit is contained in:
2018-12-27 23:34:14 +00:00
parent 91b76a11d8
commit 0acb82b808
32 changed files with 2570 additions and 1707 deletions

View File

@@ -0,0 +1,9 @@
namespace DiscImageChef.Server.Models
{
public class MediaItem
{
public string Type { get; set; }
public string SubType { get; set; }
public long Count { get; set; }
}
}