/**
 * Outgoing data schema for the login method of the auth component.
 */
export default interface UserDS {
  id: string;
  role: string;
  first_name: string;
  last_name: string;
  created: string;
  updated: string;
}
