using Esiur.Data; using System; using System.Collections.Generic; using System.Text; namespace Esiur.Resource { public interface IResourceContext { public Map Attributes { get; } public Map Properties { get; } public ulong Age { get; } } }