32 lines
1.1 KiB
Go
32 lines
1.1 KiB
Go
package dto
|
|
|
|
import (
|
|
"github.com/oklog/ulid/v2"
|
|
)
|
|
|
|
type UserDto struct {
|
|
ID ulid.ULID `json:"id"`
|
|
Username string `json:"username"`
|
|
Password string `json:"password"` // Note: In a real application, you would NEVER send the password in a DTO. This is just for demonstration.
|
|
Role string `json:"role"`
|
|
CompanyID int `json:"companyId"`
|
|
HourlyRate float64 `json:"hourlyRate"`
|
|
}
|
|
|
|
type UserCreateDto struct {
|
|
Username string `json:"username"`
|
|
Password string `json:"password"` // Note: In a real application, you would NEVER send the password in a DTO. This is just for demonstration.
|
|
Role string `json:"role"`
|
|
CompanyID int `json:"companyId"`
|
|
HourlyRate float64 `json:"hourlyRate"`
|
|
}
|
|
|
|
type UserUpdateDto struct {
|
|
ID ulid.ULID `json:"id"`
|
|
Username *string `json:"username"`
|
|
Password *string `json:"password"` // Note: In a real application, you would NEVER send the password in a DTO. This is just for demonstration.
|
|
Role *string `json:"role"`
|
|
CompanyID *int `json:"companyId"`
|
|
HourlyRate *float64 `json:"hourlyRate"`
|
|
}
|