2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-06-13 14:38:43 +00:00
This commit is contained in:
2026-05-26 16:18:57 +03:00
parent e4a54ffbe8
commit a91fc7d262
29 changed files with 206 additions and 148 deletions
+6 -6
View File
@@ -8,13 +8,13 @@ using System.Text;
namespace Esiur.Resource
{
public class ResourceContext
public class ResourceContext:IResourceContext
{
public ulong Age { get; }
public Map<string, object> Attributes { get; }
public Map<string, object> Properties { get; }
public IPermissionsManager PermissionsManager { get; }
public ResourceContext(ulong age, Map<string, object> attributes, Map<string, object> properties, IPermissionsManager permissionsManager)
{
Age = age;
@@ -23,9 +23,9 @@ namespace Esiur.Resource
PermissionsManager = permissionsManager;
}
public virtual void Build()
{
// update the context based on the current state of the resource and its environment
}
//public virtual void Build()
//{
// // update the context based on the current state of the resource and its environment
//}
}
}