mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 04:49:21 +00:00
22 lines
498 B
Dart
22 lines
498 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,
|
|
});
|
|
}
|