1
0
mirror of https://github.com/esphome/esphome.git synced 2025-03-26 12:38:16 +00:00
esphome/esphome/components/select/select_traits.cpp

12 lines
309 B
C++
Raw Normal View History

#include "select_traits.h"
namespace esphome {
namespace select {
void SelectTraits::set_options(std::vector<std::string> options) { this->options_ = std::move(options); }
std::vector<std::string> SelectTraits::get_options() const { return this->options_; }
} // namespace select
} // namespace esphome