generated from Sithas/conan_template
16 lines
177 B
C++
16 lines
177 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "../helpers/helpers.h"
|
|
|
|
namespace uad
|
|
{
|
|
struct user_dto
|
|
{
|
|
std::string uuid;
|
|
std::string login;
|
|
std::string hashed_password;
|
|
};
|
|
}
|