Skip to content

Commit

Permalink
added calendar color file
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Wolf committed Jul 23, 2024
1 parent c333f31 commit cd0c652
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/src/models/calendar_color.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
class CalendarColor {
final int color;
final int colorKey;

CalendarColor(this.color, this.colorKey);

@override
String toString() => 'CalendarColor(color: $color, colorKey: $colorKey)';
}

0 comments on commit cd0c652

Please sign in to comment.