OSDN Git Service

feat: add fed orm (#136)
[bytom/vapor.git] / federation / database / orm / warder.go
1 package orm
2
3 import (
4         "github.com/vapor/federation/types"
5 )
6
7 type Warder struct {
8         ID        uint64
9         Pubkey    string
10         CreatedAt types.Timestamp
11         UpdatedAt types.Timestamp
12 }