ebb15b7cdb
* #79: Added query parameter to randomize filename when downloading songs Right now only the endpoint has this parameter added * #79: Added functionality to the comressed song endpoint * Added functionality to the download cover art
17 lines
500 B
C#
17 lines
500 B
C#
namespace Icarus.Constants;
|
|
|
|
public class FileExtensions
|
|
{
|
|
// Contains file extension with period at the beginning
|
|
public static string MP3_EXTENSION = ".mp3";
|
|
|
|
// Contains file extension with period at the beginning
|
|
public static string WAV_EXTENSION = ".wav";
|
|
|
|
// Contains file extension with period at the beginning
|
|
public static string JPG_EXTENSION = ".jpg";
|
|
|
|
// Contains file extension with period at the beginning
|
|
public static string ZIP_EXTENSION = ".zip";
|
|
}
|