export interface StateModel { appName: string; appDesc: string; iconUrl: string; clientTypeDesc: string; authedPermissionDtoList: authedPermissionDtoListItemProps[]; subscriptionEventDtoList: subscriptionEventDtoListItemProps[]; serverIps: string; appHomeUrl: string; pcHomeUrl: string; adminHomeUrl: string; } export interface authedPermissionDtoListItemProps { apiNameList: string[]; permissionCode: string; permissionName: string; reasonForApproval: string; status: string; statusDesc: string; } export interface subscriptionEventDtoListItemProps { eventTypeDesc: string; eventType: string; checkChoice: boolean; checkRequired: boolean; }