Skip to the content.

Model

Auto-generated documentation for fundom.model module.

Auditable

[find in source code]

class Auditable(Signed[TAuthor], Protocol):

Type that has time information about it changes.

See also

Entity

[find in source code]

class Entity(Protocol, Generic[TId]):

Common type for Entities in terms of Domain Driven Design.

Entity has identity and even when 2 Entities contain exactly the same data, but differentiate in terms of identities they are considered different.

See also

Signed

[find in source code]

class Signed(Protocol, Generic[TAuthor]):

Type that has information about its author.

See also