10 lines
231 B
C#
10 lines
231 B
C#
namespace BotSharp.Abstraction.Files.Constants;
|
|
|
|
public class FileConstants
|
|
{
|
|
public static readonly IEnumerable<string> AudioExtensions = new List<string>
|
|
{
|
|
".mp3", ".wav", ".flac", ".aac", ".ogg", ".wma"
|
|
};
|
|
}
|