10 lines
209 B
Go
10 lines
209 B
Go
|
package arn
|
||
|
|
||
|
// Feature represents a donation-based feature on the site.
|
||
|
type Feature struct {
|
||
|
RequiredAmount int `json:"requiredAmount" editable:"true"`
|
||
|
ReceivedAmount int `json:"receivedAmount"`
|
||
|
|
||
|
hasID
|
||
|
}
|