import PrincipalType from "./principalType";
interface PrincipalInfo {
AccountName: string;
Department: string;
DisplayName: string;
Email: string;
IsResolved: boolean;
PrincipalType: PrincipalType;
Title: string;
UserInfoID: number;
}
export default PrincipalInfo;