17 lines
510 B
Plaintext

@startuml
class AppModuleRoleMapping {
+ AppModuleRoleMapping()
+ Id : int <<get>> <<set>>
+ RoleId : int <<get>> <<set>>
+ ModuleId : int <<get>> <<set>>
+ TenantId : int <<get>> <<set>>
+ AllowView : bool <<get>> <<set>>
+ AllowCreate : bool <<get>> <<set>>
+ AllowUpdate : bool <<get>> <<set>>
+ AllowDelete : bool <<get>> <<set>>
}
AppModuleRoleMapping --> "Role" EmployeeRole
AppModuleRoleMapping --> "Module" AppModule
AppModuleRoleMapping --> "Tenant" Tenant
@enduml