BotSharp/src/Infrastructure/BotSharp.Abstraction/Files/Constants/FileConstants.cs
Jicheng Lu b84aef8321 rename
2024-08-02 16:26:11 -05:00

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"
};
}