Files
BITKit/Src/Core/Addressable/Addressable.cs
CortexCore b7b89ee71a 1
2024-03-31 23:31:00 +08:00

18 lines
335 B
C#

using System;
namespace BITKit
{
public interface IAddressable
{
string AddressablePath { get; }
ulong AddressableId
{
get => ulong.MinValue;
set
{
if (value <= 0) throw new ArgumentOutOfRangeException(nameof(value));
}
}
}
}