src/app/modules/dashboard/interfaces/userCertData.ts
Properties |
courses |
courses:
|
Type : literal type
|
district |
district:
|
Type : string
|
userId |
userId:
|
Type : string
|
userName |
userName:
|
Type : string
|
export interface IUserCertificate {
userId: string;
userName: string;
district: string;
courses: {
courseId: string;
name: string;
contentType: string;
pkgVersion: number;
batches: Array<{}>;
};
}