mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
50 lines
1.4 KiB
Dart
50 lines
1.4 KiB
Dart
import 'package:comunic/enums/user_page_visibility.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
/// General settings
|
|
///
|
|
/// @author Pierre Hubert
|
|
|
|
class GeneralSettings {
|
|
final String email;
|
|
String firstName;
|
|
String lastName;
|
|
UserPageVisibility pageVisibility;
|
|
bool allowComments;
|
|
bool allowPostsFromFriends;
|
|
bool allowComunicEmails;
|
|
bool publicFriendsList;
|
|
bool publicEmail;
|
|
String virtualDirectory;
|
|
String personalWebsite;
|
|
String publicNote;
|
|
String location;
|
|
|
|
GeneralSettings({
|
|
@required this.email,
|
|
@required this.firstName,
|
|
@required this.lastName,
|
|
@required this.pageVisibility,
|
|
@required this.allowComments,
|
|
@required this.allowPostsFromFriends,
|
|
@required this.allowComunicEmails,
|
|
@required this.publicFriendsList,
|
|
@required this.publicEmail,
|
|
@required this.virtualDirectory,
|
|
@required this.personalWebsite,
|
|
@required this.publicNote,
|
|
@required this.location,
|
|
}) : assert(email != null),
|
|
assert(firstName != null),
|
|
assert(lastName != null),
|
|
assert(pageVisibility != null),
|
|
assert(allowComments != null),
|
|
assert(allowPostsFromFriends != null),
|
|
assert(allowComunicEmails != null),
|
|
assert(publicFriendsList != null),
|
|
assert(publicEmail != null),
|
|
assert(virtualDirectory != null),
|
|
assert(personalWebsite != null),
|
|
assert(publicNote != null);
|
|
}
|