/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/peek/Peek.FilePreviewer/Models/UnsupportedFilePreviewData.cs
27 строк
717 B
Samuel Chapleau
[Peek] Enhance failed preview UX (#25949)
12 май 2023, 00:46
Не верифицирован
12 май 2023, 00:46
50984fc
Код
Авторство
О чём код?
// 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. using CommunityToolkit.Mvvm.ComponentModel; using Microsoft.UI.Xaml.Media; namespace Peek.FilePreviewer.Models { public partial class UnsupportedFilePreviewData : ObservableObject { [ObservableProperty] private ImageSource? iconPreview; [ObservableProperty] private string? fileName; [ObservableProperty] private string? fileType; [ObservableProperty] private string? fileSize; [ObservableProperty] private string? dateModified; } }