FPSMS-frontend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
190 B

  1. "server=only";
  2. export interface Operator {
  3. id: number;
  4. name: string;
  5. username: string;
  6. }
  7. export interface Machine {
  8. id: number;
  9. name: string;
  10. code: string;
  11. qrCode: string;
  12. }