15 lines
272 B
Go
15 lines
272 B
Go
|
package model
|
||
|
|
||
|
type CreateRoleRequest struct {
|
||
|
Name string `json:"name"`
|
||
|
Code string `json:"code"`
|
||
|
Type string `json:"type"`
|
||
|
}
|
||
|
|
||
|
type UpdateRoleRequest struct {
|
||
|
ID string `json:"_id"`
|
||
|
Name string `json:"name"`
|
||
|
Code string `json:"code"`
|
||
|
Type string `json:"type"`
|
||
|
}
|