mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-06-13 22:48:42 +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; }
|
|
|
|
}
|
|
}
|