mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-10-26 21:51:01 +03:00
10 lines
158 B
Python
10 lines
158 B
Python
"""Users bundle entities module."""
|
|
|
|
|
|
class User(object):
|
|
"""User entity."""
|
|
|
|
def __init__(self, id):
|
|
"""Initializer."""
|
|
self.id = id
|