Files
RRJServer/DB_LMS/DataBaseLMS/basicentity.cpp
2024-11-06 16:06:32 +03:00

15 lines
174 B
C++

#include "basicentity.h"
BasicEntity::BasicEntity():
id(),
name()
{
}
BasicEntity::BasicEntity(int id, QString name)
{
this->id = id;
this->name = name;
}