Files
MayShow/src/Interfaces/ICanCheckShutdown.cs
T
2026-02-24 19:38:20 +09:00

8 lines
133 B
C#

using System.Threading.Tasks;
namespace MayShow.Interfaces;
interface ICanCheckShutdown
{
Task<bool> CheckIsSafeToShutdown();
}