/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Actions/IToggleAction.cs
16 строк
342 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.Actions { /// <summary> /// Represents an interface for the toggle Actions. /// </summary> public interface IToggleAction : IAction { /// <summary> /// Gets a value whether the toggle is on or not. /// </summary> bool IsOn { get; } } }