parent
3d61c48e1c
commit
268ac275ac
@ -0,0 +1,15 @@
|
|||||||
|
#ifndef CONTACT_H
|
||||||
|
#define CONTACT_H
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
class Contact {
|
||||||
|
public:
|
||||||
|
std::string name;
|
||||||
|
std::string phone;
|
||||||
|
std::string email;
|
||||||
|
|
||||||
|
Contact(const std::string& n, const std::string& p, const std::string& e) : name(n), phone(p), email(e) {}
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // CONTACT_H
|
Loading…
Reference in new issue