Files
icarus/include/dto/ArtistDto.hpp
T
2020-12-19 11:51:15 -05:00

24 lines
424 B
C++

#ifndef ARTISTDTO_H_
#define ARTISTDTO_H_
// #include "oatpp/core/data/mapping/type/Object.hpp"
#include "oatpp/core/Types.hpp"
#include "oatpp/core/macro/codegen.hpp"
namespace dto
{
#include OATPP_CODEGEN_BEGIN(DTO)
class ArtistDto : public oatpp::DTO
{
DTO_INIT(ArtistDto, DTO)
DTO_FIELD(Int32, id);
DTO_FIELD(String, artist);
};
#include OATPP_CODEGEN_END(DTO)
}
#endif