content.dart 197 B

12345678910111213
  1. import 'package:objectbox/objectbox.dart';
  2. enum ContentType {
  3. text,
  4. img
  5. }
  6. @Entity()
  7. class Content {
  8. int id = 0;
  9. final ContentType type = ContentType.text;
  10. final String plaintext = "";
  11. }