Skip to content

Commit

Permalink
Step 15.11: Add RSVP interface
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha committed Nov 27, 2016
1 parent cfec45d commit 11119a9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions both/models/party.model.ts
Expand Up @@ -7,4 +7,10 @@ export interface Party extends CollectionObject {
owner?: string;
public: boolean;
invited?: string[];
rsvps?: RSVP[];
}

interface RSVP {
userId: string;
response: string;
}

0 comments on commit 11119a9

Please sign in to comment.