mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
11 lines
203 B
C#
11 lines
203 B
C#
namespace ServerManagerTool.Common.Interfaces
|
|
{
|
|
public interface INullableValue
|
|
{
|
|
bool HasValue { get; }
|
|
|
|
INullableValue Clone();
|
|
|
|
void SetValue(object value);
|
|
}
|
|
}
|