mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-07-30 17:30:40 +00:00
16 lines
313 B
C#
16 lines
313 B
C#
using Esiur.Data;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Resource
|
|
{
|
|
public interface IResourceContext
|
|
{
|
|
public Map<string, object> Attributes { get; }
|
|
public Map<string, object> Properties { get; }
|
|
public ulong Age { get; }
|
|
|
|
}
|
|
}
|