12 lines
146 B
C#
12 lines
146 B
C#
namespace SRDebugger.Services
|
|
{
|
|
public interface ISystemInfo
|
|
{
|
|
string Title { get; }
|
|
|
|
object Value { get; }
|
|
|
|
bool IsPrivate { get; }
|
|
}
|
|
}
|