/**
 * v1
 * FDOT Document Management API
 * The FDOT API for interfacing with the departments Document Management System
 * localhost:60583/swagger
 */
export interface DocumentType {
    Id?: string;
    Description?: string;
    /** format: int32 */
    SystemId?: number;
    /** format: int32 */
    ParentDocumentGroupId?: number;
}
