Vessel edit dialog
This commit is contained in:
parent
9686b96d8a
commit
eb097588ba
21 changed files with 589 additions and 97 deletions
|
|
@ -15,13 +15,13 @@ enum class UserRole {
|
|||
|
||||
class user_entity : public IEntity {
|
||||
private:
|
||||
entity_id _id;
|
||||
entity_id _id = 0;
|
||||
QString _login;
|
||||
UserRole _role;
|
||||
QByteArray _pwd_hash;
|
||||
|
||||
public:
|
||||
user_entity() = default;
|
||||
user_entity();
|
||||
user_entity(const QString &login, const QString &password, UserRole role);
|
||||
|
||||
entity_id id() const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue