New: property-level mapping (Operation + PropertyName -> many ResourceActions)
| 49 | |
| 50 | // New: property-level mapping (Operation + PropertyName -> many ResourceActions) |
| 51 | public 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 | |
| 60 | public class OperationExclusionEntity |
| 61 | { |
nothing calls this directly
no outgoing calls
no test coverage detected