generictask.fbs 224 B

123456789101112131415
  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. recurring: int;
  12. }
  13. root_type GenericTask;