feature/11-new_classes #15

Merged
niggl merged 55 commits from feature/11-new_classes into dev 2020-12-02 17:48:19 +00:00
Showing only changes of commit daea0568a8 - Show all commits

View File

@ -29,9 +29,8 @@ export abstract class Donation {
/** /**
* The donation's amount in cents (or whatever your currency's smallest unit is.). * The donation's amount in cents (or whatever your currency's smallest unit is.).
* The exact implementation may differ for each type of donation.
*/ */
@Column()
@IsInt() @IsInt()
@IsPositive()
amount: number; amount: number;
} }