commento/api/commenter.go
2018-06-07 13:11:02 +05:30

16 lines
384 B
Go

package main
import (
"time"
)
type commenter struct {
CommenterHex string `json:"commenterHex,omitempty"`
Email string `json:"email,omitempty"`
Name string `json:"name"`
Link string `json:"link"`
Photo string `json:"photo"`
Provider string `json:"provider,omitempty"`
JoinDate time.Time `json:"joinDate,omitempty"`
}