/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/common/FilePreviewCommon/BgcodeThumbnailFormat.cs
24 строки
567 B
Pedro Lamas
Adds BgcodeThumbnailProvider and BgcodePreviewHandler (#38667)
10 июл 2025, 12:20
Не верифицирован
10 июл 2025, 12:20
071f5d7
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace Microsoft.PowerToys.FilePreviewCommon { public enum BgcodeThumbnailFormat { /// <summary> /// PNG image format. /// </summary> PNG = 0, /// <summary> /// JPG image format. /// </summary> JPG = 1, /// <summary> /// QOI image format. /// </summary> QOI = 2, } }