Added Feature type

This commit is contained in:
2020-04-23 15:43:09 +09:00
parent 42366174e5
commit ce9a1d4f89

9
arn/Feature.go Normal file
View File

@ -0,0 +1,9 @@
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
}