8 lines
107 B
C#
Raw Permalink Normal View History

2025-05-18 01:04:31 +08:00
namespace SRF.Service
{
public interface IAsyncService
{
bool IsLoaded { get; }
}
}