kontenhumas-be/app/module/clients/response/clients.response.go

16 lines
343 B
Go
Raw Normal View History

2025-09-28 01:53:09 +00:00
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"`
}