You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
374 B
12 lines
374 B
package community |
|
|
|
type Community struct { |
|
ID int `json:"id"` |
|
Name string `json:"name"` |
|
Desc string `json:"desc"` |
|
Thumb string `json:"thumb"` |
|
PostCount int `json:"post_count"` |
|
MemberCount int `json:"member_count"` |
|
PostNickname string `json:"post_nickname"` |
|
MemberNickname string `json:"member_nickname"` |
|
}
|
|
|