Move ResultEventArgs to Frontend

This commit is contained in:
Matt Nadareski
2024-05-28 13:44:57 -04:00
parent 898069c799
commit 8c70f19959
4 changed files with 4 additions and 3 deletions

View File

@@ -150,6 +150,7 @@
- Hacky move of DIC-specific code
- Remove Drive dependency from GenerateSubmissionInfo
- Move Drive to Frontend
- Move ResultEventArgs to Frontend
### 3.1.9a (2024-05-21)

View File

@@ -1,6 +1,6 @@
using System;
using BinaryObjectScanner;
using MPF.Core;
using MPF.Frontend;
namespace MPF.Check
{

View File

@@ -1,6 +1,6 @@
using System;
namespace MPF.Core
namespace MPF.Frontend
{
/// <summary>
/// Generic success/failure result object, with optional message

View File

@@ -1,4 +1,4 @@
using MPF.Core;
using MPF.Frontend;
using Xunit;
namespace MPF.Test.Core.Data