Files

18 lines
335 B
C#
Raw Permalink Normal View History

2024-06-03 10:11:43 +08:00
using System;
namespace BITKit
{
public interface IAddressable
{
string AddressablePath { get; }
ulong AddressableId
{
get => ulong.MinValue;
set
{
if (value <= 0) throw new ArgumentOutOfRangeException(nameof(value));
}
}
}
}