Files
2025-08-16 18:30:05 +03:00

11 lines
191 B
C#

using mROA.Abstract;
using mROA.Implementation.Attributes;
namespace mROA.Benchmark
{
[SharedObjectInterface]
public interface IPage : IShared
{
byte[] GetData();
}
}