2024-06-17 18:57:01 +03:30
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
type CreateRoleCommand struct {
|
2024-07-13 16:49:16 +03:30
|
|
|
Name string `validate:"required"`
|
2024-06-17 18:57:01 +03:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type UpdateRoleCommand struct {
|
2024-07-13 16:49:16 +03:30
|
|
|
Name string `validate:"required"`
|
2024-06-17 18:57:01 +03:30
|
|
|
}
|