1
0

feat: extend mode interface from class instead from interface

This commit is contained in:
Dominik Pschenitschni
2022-07-21 18:35:37 +02:00
parent 80eaf38090
commit a6b96f857d
33 changed files with 40 additions and 41 deletions

View File

@ -1,6 +1,6 @@
import AbstractModel from '@/models/abstractModel'
export interface IPasswordUpdate {
export interface IPasswordUpdate extends AbstractModel {
newPassword: string
oldPassword: string
}