src/app/models/session.ts
date |
date: |
goalForNextTime |
goalForNextTime: |
id |
id: |
ownerUid |
ownerUid: |
postPracticeReflection |
postPracticeReflection: |
practiceTime |
practiceTime: |
sessionIntent |
sessionIntent: |
whatToPractice |
whatToPractice: |
import { Timestamp } from 'firebase/firestore';
export class Session {
id?: string;
ownerUid: string;
date: Timestamp;
practiceTime: number;
whatToPractice: string;
sessionIntent: string;
postPracticeReflection: string;
goalForNextTime: string;
}