/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App.Controls/Storage/Data/BarShapes.cs
26 строк
482 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.Controls { /// <summary> /// Defines BarShape for <see cref="StorageBar"/>. /// </summary> public enum BarShapes { /// <summary> /// The BarShape for Round StorageBars. Default state. /// </summary> Round, /// <summary> /// The BarShape for Soft StorageBars. /// </summary> Soft, /// <summary> /// The BarShape for Flat StorageBars. /// </summary> Flat, } }