9 lines
250 B
Go
9 lines
250 B
Go
|
package model
|
||
|
|
||
|
// GetListStaffByNotificationActionRequest ...
|
||
|
type GetListStaffByNotificationActionRequest struct {
|
||
|
CreatedBys []string `json:"createdBys"`
|
||
|
ApprovedBys []string `json:"approvedBys"`
|
||
|
CancelledBys []string `json:"cancelledBys"`
|
||
|
}
|