summaryrefslogtreecommitdiffstats
path: root/dozentenmodulserver/src/main/java/org/openslx/bwlp/sat/database/models/LocalUser.java
blob: e0ea342eed4e9f9343091695893b4ac5726215fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.openslx.bwlp.sat.database.models;

public class LocalUser {

	public final long lastLogin;
	public final boolean canLogin;
	public final boolean isSuperUser;
	public final boolean emailNotifications;

	public LocalUser(long lastLogin, boolean canLogin, boolean isSuperUser, boolean emailNotifications) {
		this.lastLogin = lastLogin;
		this.canLogin = canLogin;
		this.isSuperUser = isSuperUser;
		this.emailNotifications = emailNotifications;
	}

}