Add .gif file extension

This commit is contained in:
Rafael Carvalho 2023-03-06 17:22:08 +13:00
parent dc88862602
commit 718371505c

View file

@ -20,5 +20,6 @@ public static string Extension(this Codec type)
public static readonly string WebM = VideoType.WebM.Extension; public static readonly string WebM = VideoType.WebM.Extension;
public static readonly string Png = ".png"; public static readonly string Png = ".png";
public static readonly string Mp3 = ".mp3"; public static readonly string Mp3 = ".mp3";
public static readonly string Gif = ".gif";
} }
} }