mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
22 lines
492 B
Dart
22 lines
492 B
Dart
/// Data conservation policy settings
|
|
///
|
|
/// @author Pierre Hubert
|
|
|
|
class DataConservationPolicySettings {
|
|
int inactiveAccountLifeTime;
|
|
int notificationLifetime;
|
|
int commentsLifetime;
|
|
int postsLifetime;
|
|
int conversationMessagesLifetime;
|
|
int likesLifetime;
|
|
|
|
DataConservationPolicySettings({
|
|
this.inactiveAccountLifeTime,
|
|
this.notificationLifetime,
|
|
this.commentsLifetime,
|
|
this.postsLifetime,
|
|
this.conversationMessagesLifetime,
|
|
this.likesLifetime,
|
|
});
|
|
}
|