MCPcopy Create free account
hub / github.com/FrodeHus/EntraRoleReaper / OperationPropertyMapEntity

Class OperationPropertyMapEntity

server/Data/Entities.cs:51–58  ·  view source on GitHub ↗

New: property-level mapping (Operation + PropertyName -> many ResourceActions)

Source from the content-addressed store, hash-verified

49
50// New: property-level mapping (Operation + PropertyName -> many ResourceActions)
51public class OperationPropertyMapEntity
52{
53 public int Id { get; set; }
54 public string OperationName { get; set; } = string.Empty;
55 public string PropertyName { get; set; } = string.Empty;
56 public virtual ICollection<ResourceActionEntity> ResourceActions { get; set; } =
57 new List<ResourceActionEntity>();
58}
59
60public class OperationExclusionEntity
61{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected