8 lines
254 B
Go
8 lines
254 B
Go
package entities
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
// DepartmentRecipientsSetting represents the structure for storing department recipient IDs in app settings
|
|
type DepartmentRecipientsSetting struct {
|
|
DepartmentIDs []uuid.UUID `json:"department_ids"`
|
|
} |