mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-01-27 09:30:39 +00:00
21 lines
578 B
C#
21 lines
578 B
C#
using Esiur.Core;
|
|
using Esiur.Resource.Template;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Data
|
|
{
|
|
public interface IDynamicResource
|
|
{
|
|
public PropertyValue[] SerializeResource();
|
|
public Map<byte, PropertyValue> SerializeResourceAfter(ulong age);
|
|
|
|
public object GetResourceProperty(byte index);
|
|
public AsyncReply SetResourcePropertyAsync(byte index, object value);
|
|
public void SetResourceProperty(byte index, object value);
|
|
|
|
public TypeTemplate ResourceTemplate { get; }
|
|
}
|
|
}
|