1.7 KiB
1.7 KiB
source_files, generated_at, model, schema_version, sha256
| source_files | generated_at | model | schema_version | sha256 | ||
|---|---|---|---|---|---|---|
|
2026-04-17T16:05:06.830625+00:00 | zai-org/GLM-5-FP8 | 1 | 855c03757cadeb14 |
ManageUsers
Purpose
This module defines the View and ViewModel contract interfaces for a user management feature within the DTS application. It follows the MVVM (Model-View-ViewModel) pattern by providing marker interfaces that extend base view and viewmodel abstractions, enabling loose coupling between the user management UI components and their backing logic.
Public Interface
IManageUsersView (extends IBaseView)
- Empty marker interface defining the view contract for the Manage Users feature.
- No members defined beyond those inherited from
IBaseView.
IManageUsersViewModel (extends IBaseViewModel)
- Empty marker interface defining the viewmodel contract for the Manage Users feature.
- No members defined beyond those inherited from
IBaseViewModel.
Invariants
- Both interfaces must be implemented by their respective MVVM components (View and ViewModel).
- Implementations must satisfy the contracts of
IBaseViewandIBaseViewModelrespectively.
Dependencies
- Depends on:
DTS.Common.Base(specificallyIBaseViewandIBaseViewModel) - Depended on by: Not determinable from source alone (likely concrete View/ViewModel implementations and DI containers)
Gotchas
- Neither interface adds any members beyond their base interfaces. The actual user management operations and properties must be defined in implementations or potentially in a separate extended interface not shown here.