Skip to content

Commit

Permalink
Add file to make stuff break
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-bstein committed Dec 13, 2023
1 parent bb9fdf2 commit 14da784
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>players-report works!</p>
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-players-report',
templateUrl: './players-report.component.html',
styleUrls: ['./players-report.component.scss']
})
export class PlayersReportComponent {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { PagingArgs } from "@/api/models";
import { ReportDateRange } from "@/reports/reports-models";

export interface PlayersReportFlatParameters {
createdOnDateStart?: string;
createdOnDateEnd?: string;
lastPlayedOnStart?: string;
lastPlayedOnEnd?: string;
sponsorId?: string;
pageNumber?: number;
pageSize?: number;
}

export interface PlayersReportParameters {
createdOn?: ReportDateRange;
lastPlayedOn?: ReportDateRange;
sponsorId?: string;
paging: PagingArgs;
}

0 comments on commit 14da784

Please sign in to comment.