blob: 5806cb7ce6c02387dd43dc709d79aa5139eafe98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package character
import (
"time"
"github.com/google/uuid"
)
type Response struct {
ID uuid.UUID `json:"id"`
Name string `json:"name"`
Race string `json:"race"`
StartingKingdom string `json:"starting_kingdom"`
RealmID uuid.UUID `json:"realm_id"`
CreatedAt time.Time `json:"created_at"`
}
|