#!/usr/bin/env python
from pgpickle import conform_method, quoted_pickle_method

class EmployeePhoto:
    def __init__(self, content_type, content):
        self.content_type = content_type
        self.content = content

    __conform__ = conform_method()
    getquoted = quoted_pickle_method()
