import 'package:libac_dart/utils/uuid/UUID.dart'; /// The user class is a user object. /// /// This, most basic object, will only contain data needed for user identification. Issues, groups, etc shall be handled in another area. class User { String sName; UUID ID; User({required this.sName, required this.ID}); }