/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.Core.Storage/Contracts/IWatcher.cs
21 строка
424 B
Yair
Code Quality: Updated license header
31 дек 2024, 05:03
31 дек 2024, 05:03
8436c6d
Код
Авторство
О чём код?
// Copyright (c) 2023 Files Community // Licensed under the MIT License. namespace Files.Core.Storage.Contracts { /// <summary> /// A disposable object which can notify of changes to the folder. /// </summary> public interface IWatcher : IDisposable { /// <summary> /// Starts the watcher /// </summary> void StartWatcher(); /// <summary> /// Stops the watcher /// </summary> void StopWatcher(); } }