/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Enums/CardsViewSizeKind.cs
31 строка
546 B
Yair
Feature: Added Cards View layout (#16717)
23 янв 2025, 00:31
Не верифицирован
23 янв 2025, 00:31
ba224f1
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Data.Enums { /// <summary> /// Defines constants that specify the size in the Cards View layout. /// </summary> public enum CardsViewSizeKind { /// <summary> /// The size is small. /// </summary> Small = 1, /// <summary> /// The size is medium. /// </summary> Medium = 2, /// <summary> /// The size is large. /// </summary> Large = 3, /// <summary> /// The size is extra large. /// </summary> ExtraLarge = 4, } }