Skip to content

Commit 45cbc51

Browse files
committed
splitting types into separate files
1 parent 36c4c7a commit 45cbc51

File tree

3 files changed

+18
-16
lines changed

3 files changed

+18
-16
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
namespace Intersect.Framework.Core.AssetManagement;
2+
3+
internal enum DownloadValidity
4+
{
5+
Valid,
6+
Missing,
7+
LengthMismatch,
8+
ChecksumMismatch,
9+
}

Framework/Intersect.Framework.Core/AssetManagement/Updater.cs

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,6 @@
1717

1818
namespace Intersect.Framework.Core.AssetManagement;
1919

20-
public enum UpdaterStatus
21-
{
22-
Offline,
23-
NeedsAuthentication,
24-
Ready,
25-
NoUpdateNeeded,
26-
}
27-
2820
public sealed class Updater
2921
{
3022
public const string KeywordAppManifest = "#appmanifest";
@@ -1407,12 +1399,4 @@ public void Stop()
14071399

14081400
_stopping = true;
14091401
}
1410-
}
1411-
1412-
internal enum DownloadValidity
1413-
{
1414-
Valid,
1415-
Missing,
1416-
LengthMismatch,
1417-
ChecksumMismatch,
14181402
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
namespace Intersect.Framework.Core.AssetManagement;
2+
3+
public enum UpdaterStatus
4+
{
5+
Offline,
6+
NeedsAuthentication,
7+
Ready,
8+
NoUpdateNeeded,
9+
}

0 commit comments

Comments
 (0)