10 lines
209 B
Go
Raw Normal View History

2020-04-23 06:43:09 +00:00
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
}