blob: 3b7fc73c5d80c3589bc4e7aed8f4489661f937b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package models
type GitHubLead struct {
Name string `json:"name"`
Email string `json:"email"`
Username string `json:"username"`
Company string `json:"company,omitempty"`
Location string `json:"location,omitempty"`
Website string `json:"website,omitempty"`
Twitter string `json:"twitter,omitempty"`
PFP string `json:"pfp,omitempty"`
Bio string `json:"bio,omitempty"`
}
|