48f9914a1f
Removing comments, some cleanup, and moving the startup code into Program.cs
12 lines
303 B
C#
12 lines
303 B
C#
using System.IO;
|
|
|
|
namespace Icarus.Constants;
|
|
|
|
public class DirectoryPaths
|
|
{
|
|
public static string CoverArtPath =>
|
|
Directory.GetCurrentDirectory() + "/Images/Stock/CoverArt.png";
|
|
public static string FILENAME_CHARACTERS = "ABCDEF0123456789";
|
|
public static int FILENAME_LENGTH = 25;
|
|
}
|