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