mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
15 lines
156 B
Dart
15 lines
156 B
Dart
/// Different kinds of posts
|
|
///
|
|
/// @author Pierre HUBERT
|
|
|
|
enum PostKind {
|
|
TEXT,
|
|
IMAGE,
|
|
WEB_LINK,
|
|
PDF,
|
|
MOVIE,
|
|
COUNTDOWN,
|
|
SURVEY,
|
|
YOUTUBE
|
|
}
|