profile.interface.ts 216 B

123456789101112
  1. export interface ProfileInterface{
  2. error: boolean;
  3. msg: string;
  4. response: Profile;
  5. }
  6. export interface Profile{
  7. IDPERFIL: number;
  8. NOMBREPERFIL: string;
  9. ESTATUS: string;
  10. PERMISOS: string;
  11. }