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"` }