14 lines
355 B
C#
14 lines
355 B
C#
using System;
|
|
using System.IO;
|
|
using System.Runtime.InteropServices;
|
|
|
|
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;
|
|
}
|