notify.moe/arn/Feature.go
2020-04-23 15:43:09 +09:00

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
}