generictask.fbs 206 B

1234567891011121314
  1. namespace GenericData;
  2. table GenericTask {
  3. id: int;
  4. file_info: string;
  5. time: string;
  6. description: string;
  7. is_video: bool;
  8. mask: int;
  9. header: string;
  10. user: string;
  11. }
  12. root_type GenericTask;