class TimerModel {
DateTime startAt;
DateTime endAt;
int durationInSecond;
TimerModel({this.startAt, this.endAt, this.durationInSecond});
}