/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Data/Enums/ColumnsViewSizeKind.cs
36 строк
626 B
Yair
Code Quality: Updated license header
31 дек 2024, 05:03
31 дек 2024, 05:03
8436c6d
Код
Авторство
О чём код?
// Copyright (c) Files Community // Licensed under the MIT License. namespace Files.App.Data.Enums { /// <summary> /// Defines constants that specify the size in the Columns View layout. /// </summary> public enum ColumnsViewSizeKind { /// <summary> /// The size is compact. /// </summary> Compact = 1, /// <summary> /// The size is small. /// </summary> Small = 2, /// <summary> /// The size is medium. /// </summary> Medium = 3, /// <summary> /// The size is large. /// </summary> Large = 4, /// <summary> /// The size is extra large. /// </summary> ExtraLarge = 5, } }