File

src/app/admin/invites/invite.model.ts

Index

Properties

Properties

company
company: Company
Type : Company
companyId
companyId: number
Type : number
email
email: string
Type : string
expiredDate
expiredDate: number
Type : number
id
id: number
Type : number
invitedBy
invitedBy: number
Type : number
role
role: Role
Type : Role
status
status: InviteStatus
Type : InviteStatus
import {Role} from "../../core/models/auth/role.model";
import {Company} from "../../core/models/auth/company.model";
import {InviteStatus} from "./invite-status.type";

export interface Invite {
  id?: number,
  email: string;
  role: Role;
  companyId?: number;
  company?: Company;
  expiredDate: number;
  status: InviteStatus;
  invitedBy?: number;
}

results matching ""

    No results matching ""