/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/imageresizer/ui/Services/AiCapabilityCache.cs
22 строки
590 B
moooyo
Super resolution with AI for image resizer (#42331)
15 дек 2025, 04:42
Не верифицирован
15 дек 2025, 04:42
66e96bb
Код
Авторство
О чём код?
// 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 ImageResizer.Services { /// <summary> /// Data model for AI capability cache file. /// </summary> internal sealed class AiCapabilityCache { public int Version { get; set; } public int State { get; set; } public string WindowsBuild { get; set; } public string Architecture { get; set; } public string Timestamp { get; set; } } }