export interface IUserDto {
    expirationDate?: string;
    id: string;
    isEnabled: boolean;
}
