Files
Livebeat/backend/models/phone/phone.interface.ts
Mondei1 19b7c05d75 Socket connection now works
- Pairing a new device works

(I did a lot since the last commit)
2021-11-14 01:42:21 +01:00

17 lines
387 B
TypeScript

import { Document } from 'mongoose';
import { IUser } from '../user/user.interface';
export interface IPhone extends Document {
androidId: String,
displayName: String,
modelName: string,
operatingSystem: String,
architecture: String,
user: IUser,
approval: {
approvedOn?: Date,
code: String
},
updatedAt?: Date,
createdAt?: Date
}