Files
2026-02-21 16:45:37 +08:00

12 lines
146 B
C#

namespace SRDebugger.Services
{
public interface ISystemInfo
{
string Title { get; }
object Value { get; }
bool IsPrivate { get; }
}
}