* #102: Moving Models and constants to their own library * #102: Updated sln file * #102: Updated README to include step install migration tool
This commit was merged in pull request #104.
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
namespace Icarus.Constants;
|
||||
|
||||
public class FileExtensions
|
||||
{
|
||||
// Contains the default audio file extension with period at the beginning
|
||||
public static string DEFAULT_AUDIO_EXTENSION = WAV_EXTENSION!;
|
||||
|
||||
// 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 FLAC_EXTENSION = ".flac";
|
||||
|
||||
// Contains file extension with period at the beginning
|
||||
public static string ZIP_EXTENSION = ".zip";
|
||||
}
|
||||
Reference in New Issue
Block a user