mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-19 02:39:57 +00:00
19 lines
460 B
Go
19 lines
460 B
Go
package dtos
|
|
|
|
import "time"
|
|
|
|
type Property struct {
|
|
IdLink string `json:"@id"`
|
|
Id string `json:"id"`
|
|
OrganizationID string `json:"organization_id"`
|
|
Slug string `json:"slug"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
type Properties struct {
|
|
ID string `json:"@id"`
|
|
TotalItems int `json:"total_items"`
|
|
Items []Property `json:"items"`
|
|
}
|