Added Feature type

This commit is contained in:
Eduard Urbach 2020-04-23 15:43:09 +09:00
parent 42366174e5
commit ce9a1d4f89
Signed by: akyoto
GPG Key ID: C874F672B1AF20C0

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
}