﻿
export interface IUser {
    expirationDate: Date | null;
    id: string;
    isEnabled: boolean;
    name: string;
}
