Files
sendico/frontend/pshared/lib/models/permissions/action_effect.dart
2025-11-13 15:06:15 +03:00

14 lines
347 B
Dart

import 'package:pshared/models/permissions/action.dart';
import 'package:pshared/models/permissions/effect.dart';
class ActionEffect {
final Action action; // The action allowed or denied
final Effect effect; // The effect of the policy ("allow" or "deny")
const ActionEffect({
required this.action,
required this.effect,
});
}