Files
2025-11-15 17:17:52 +01:00

12 lines
278 B
C#

using Avalonia.Platform.Storage;
namespace ModpackUpdater.Apps.Manager.Utils;
public class MyFilePickerFileTypes
{
public static FilePickerFileType Excel { get; } = new("Excel")
{
Patterns = ["*.xlsx"],
MimeTypes = ["application/vnd.ms-excel"]
};
}