import { IOrganisation } from './IOrganisation'; import { IAddress } from './IAddress'; import { IRole } from './IRole'; import { IJobTitleSuggetion } from './IJobTitleSuggetion'; export interface IStaff{ UniqueIdentifier: string, Id:any, FirstName:string, LastName:string, Company:IOrganisation, Email:string, RoleName?:string, MobileCountryCode? : string, Mobile?:string, Office?:string, OfficeExt?:string, PublicProfileNote? : string, PrivateProfileNote? : string, Address? : IAddress, ProfilePicture? : string, Role? : IRole, Home? : string, Fax? : string, SendInvite? : boolean, JobTitle? : IJobTitleSuggetion, JobTitleId ? :number, PictureName?:string, State?:string, City?:string, Country?:string }