11 lines
252 B
Go
11 lines
252 B
Go
|
|
package models
|
||
|
|
|
||
|
|
type CreateRoleCommand struct {
|
||
|
|
Name string `validate:"required"`
|
||
|
|
Modified_by string `validate:"required"`
|
||
|
|
}
|
||
|
|
|
||
|
|
type UpdateRoleCommand struct {
|
||
|
|
Name string `validate:"required"`
|
||
|
|
Modified_by string `validate:"required"`
|
||
|
|
}
|