8 lines
107 B
C#
Raw Normal View History

2024-08-17 14:27:18 +08:00
namespace SRF.Service
{
public interface IAsyncService
{
bool IsLoaded { get; }
}
}