Add messaging.
[wolnelektury.git] / src / messaging / recipient.py
1 class Recipient:
2     def __init__(self, email, hash_value, context):
3         self.email = email
4         self.hash_value = hash_value
5         self.context = context
6