diff --git a/arn/Feature.go b/arn/Feature.go new file mode 100644 index 00000000..6808bee2 --- /dev/null +++ b/arn/Feature.go @@ -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 +}