dukcapil/internal/entities/department_recipients_setting.go
2025-09-08 12:24:37 +07:00

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