This commit is contained in:
teddy
2025-04-21 11:58:12 +07:00
parent 4bfb6b4861
commit a69b44625e
7 changed files with 185 additions and 10 deletions

View File

@@ -13,3 +13,10 @@ type Workanniversary struct {
Fullname string `json:"fullname"`
HireDate time.Time `json:"hire_date"`
}
type SendEmailRequest struct {
Subject string `json:"subject" validate:"required"`
To []string `json:"to" validate:"required"`
CC []string `json:"cc"`
Message string `json:"message"`
}