11 lines
448 B
C#
11 lines
448 B
C#
namespace Iceshrimp.Frontend.Core.Miscellaneous;
|
|
|
|
public static class Constants
|
|
{
|
|
public static readonly string[]
|
|
CommonImageExtensions = [".png", ".gif", ".jpeg", ".jpg", ".apng", ".bmp", ".tiff", ".avif", ".webp", ".jxl"];
|
|
|
|
public static readonly string[] CommonAudioExtensions = [".opus", ".ogg", ".m4a", ".mp3", ".flac", ".wav"];
|
|
|
|
public static readonly string[] CommonVideoExtensions = [".mov", ".mp4", ".webm", ".mkv"];
|
|
}
|