BotSharp/src/Infrastructure/BotSharp.Abstraction/Files/Constants/FileConstants.cs

10 lines
231 B
C#
Raw Normal View History

2024-08-02 21:24:44 +00:00
namespace BotSharp.Abstraction.Files.Constants;
public class FileConstants
{
2024-08-02 21:26:11 +00:00
public static readonly IEnumerable<string> AudioExtensions = new List<string>
2024-08-02 21:24:44 +00:00
{
".mp3", ".wav", ".flac", ".aac", ".ogg", ".wma"
};
}