a89580ac70
* #102: Moving Models and constants to their own library * #102: Updated sln file * #102: Updated README to include step install migration tool
10 lines
331 B
C#
10 lines
331 B
C#
namespace Icarus.Constants;
|
|
|
|
public class DirectoryPaths
|
|
{
|
|
public static string CoverArtDirectory => Directory.GetCurrentDirectory() + "/Images/Stock/";
|
|
public static string CoverArtFilename => "CoverArt.png";
|
|
public static string FILENAME_CHARACTERS = "ABCDEF0123456789";
|
|
public static int FILENAME_LENGTH = 25;
|
|
}
|