Release 0.11.0 #195

Merged
niggl merged 22 commits from dev into main 2021-04-14 17:04:31 +00:00
Showing only changes of commit b4c31ee9b5 - Show all commits

View File

@ -0,0 +1,7 @@
/**
* This enum contains all status a donation can inherit regarding it's payment status.
*/
export enum DonationStatus {
OPEN = 'OPEN',
PAYED = 'PAYED'
}