Skip to content
This repository has been archived by the owner on Jan 24, 2021. It is now read-only.

Commit

Permalink
added committee type
Browse files Browse the repository at this point in the history
  • Loading branch information
hungrymonkey authored and hungrymonkey committed Oct 31, 2018
1 parent 7425f5f commit 869070c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions lib/shared/committee.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import 'package:flutter/material.dart';

class Committee {
final num id;
final String name;
final String email;
final String timezone;
final num latitude;
final num longitude;
const Committee(this.id, this.name, this.email, this.timezone, this.latitude, this.longitude);
}

0 comments on commit 869070c

Please sign in to comment.