Migrating to modern c# namespace

Using the short namesapce declaration for conciseness
This commit is contained in:
kdeng00
2023-04-09 12:34:06 -04:00
parent 37cfda84b5
commit c17c9cd329
48 changed files with 3402 additions and 3454 deletions
+6 -7
View File
@@ -1,10 +1,9 @@
using System;
namespace Icarus.Types
namespace Icarus.Types;
public enum DirectoryType
{
public enum DirectoryType
{
Music = 0,
CoverArt
};
}
Music = 0,
CoverArt
};