mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 11:32:59 +00:00
24 lines
416 B
C#
24 lines
416 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Esiur.Data;
|
|
using Esiur.Engine;
|
|
|
|
namespace Esiur.Resource
|
|
{
|
|
public delegate bool QueryFilter<T>(T value);
|
|
|
|
public interface IResource : IDestructible
|
|
{
|
|
|
|
AsyncReply<bool> Trigger(ResourceTrigger trigger);
|
|
|
|
Instance Instance
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|