Skip to content

Commit

Permalink
Added Role enum
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Strand Prestmo authored and Robin Strand Prestmo committed Feb 24, 2026
1 parent 80c40a8 commit f0b81dd
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@
* @author Robin Strand Prestmo
*/
public enum Language {
ENGLISH,
NORSK
ENGLISH
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package ntnu.sytemutvikling.team6.models;

/**
* Available users
*
* @author Robin Strand Prestmo
*/
public enum Role {
NORMAL_USER,
CHARITY_USER,
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/**
* Represents a user.
*
* @Author Robin Strand Prestmo
* @author Robin Strand Prestmo
*/
public class User {
private UUID id;
Expand Down

0 comments on commit f0b81dd

Please sign in to comment.