src/app/modules/shared-feature/interfaces/deviceProfile.ts
        
| Properties | 
| district | 
| district:          | 
| Type : string | 
| state | 
| state:          | 
| Type : string | 
export interface IDeviceProfile {
  ipLocation: ILocation;
  userDeclaredLocation?: ILocation;
}
interface ILocation {
  state: string;
  district: string;
}