Add more buttons to MMC.

This commit is contained in:
2019-11-13 00:48:14 +00:00
parent 8be757ae7a
commit ce68cc99a5
2 changed files with 17 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
using System;
using System.Linq;
using System.Threading.Tasks;
using DiscImageChef.CommonTypes.Metadata;
@@ -78,5 +79,15 @@ namespace DiscImageChef.Server.Areas.Admin.Controllers
return RedirectToAction(nameof(Index));
}
public IActionResult Decode(int id)
{
throw new NotImplementedException();
}
public IActionResult Clean()
{
throw new NotImplementedException();
}
}
}