2015-12-06 23:37:42 +08:00
|
|
|
#pragma once
|
|
|
|
|
2016-07-05 11:01:22 +08:00
|
|
|
#include "storage/model/properties/properties.hpp"
|
2015-12-06 23:37:42 +08:00
|
|
|
|
2016-08-25 22:29:45 +08:00
|
|
|
template <class TG>
|
2015-12-06 23:37:42 +08:00
|
|
|
class PropertyModel
|
|
|
|
{
|
|
|
|
public:
|
2016-08-25 22:29:45 +08:00
|
|
|
Properties<TG> props;
|
2015-12-06 23:37:42 +08:00
|
|
|
};
|