16 lines
343 B
Go
16 lines
343 B
Go
package response
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
"time"
|
|
)
|
|
|
|
type ClientsResponse struct {
|
|
ClientID uuid.UUID `json:"clientId"`
|
|
Name string `json:"name"`
|
|
CreatedById uint `json:"createdById"`
|
|
IsActive bool `json:"isActive"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
}
|