mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-04-04 04:18:22 +00:00
Layout
This commit is contained in:
20
Libraries/Esiur/Data/IDynamicResource.cs
Normal file
20
Libraries/Esiur/Data/IDynamicResource.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Esiur.Core;
|
||||
using Esiur.Data.Types;
|
||||
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 TypeDef ResourceDefinition { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user