/**
 * v1
 * FDOT Document Management API
 * The FDOT API for interfacing with the departments Document Management System
 * localhost:60583/swagger
 */
export interface Application {
    Id?: string;
    Name?: string;
    Description?: string;
    MimeType?: string;
    IsDefaultExtensionHandler?: boolean;
    SupportedExtensions?: string[];
}
