Files
cinema-ticket-management-sy…/core/repositories/repository_interface.h
T

12 lines
201 B
C++
Raw Normal View History

2026-07-12 14:34:52 +04:00
#ifndef REPOSITORY_INTERFACE_H
#define REPOSITORY_INTERFACE_H
#include <QVariant>
class RepositoryInterface {
public:
virtual ~RepositoryInterface() = default;
};
#endif // REPOSITORY_INTERFACE_H