| Total Complexity | 2 |
| Complexity/F | 1 |
| Lines of Code | 12 |
| Function Count | 2 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | export class MealTicketGroupedByMonthSummary { |
||
| 2 | month: number; |
||
| 3 | mealTicketCount: number; |
||
| 4 | constructor(month: number, mealTicketCount: number) { |
||
| 5 | this.month = month; |
||
| 6 | this.mealTicketCount = mealTicketCount; |
||
| 7 | } |
||
| 8 | setMealTicketCount(count: number) { |
||
| 9 | this.mealTicketCount = count; |
||
| 10 | } |
||
| 11 | } |
||
| 12 |