generictask.fbs 240 B

12345678910111213141516
  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. notify: bool;
  13. }
  14. root_type GenericTask;