Adds initial progress
This commit is contained in:
commit
a0b668cb90
34 changed files with 2680 additions and 0 deletions
9
source/Models/PlaydateModel.ts
Normal file
9
source/Models/PlaydateModel.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import {Model} from "./Model";
|
||||
import {GroupModel} from "./GroupModel";
|
||||
import {Nullable} from "../types/Nullable";
|
||||
|
||||
export interface PlaydateModel extends Model {
|
||||
group: Nullable<GroupModel>
|
||||
from_time: Date,
|
||||
to_time: Date,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue