Skip to content

Instantly share code, notes, and snippets.

@laugri
Last active December 5, 2018 16:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save laugri/2faa3385e4e5e8254c3e4be295142a40 to your computer and use it in GitHub Desktop.
Save laugri/2faa3385e4e5e8254c3e4be295142a40 to your computer and use it in GitHub Desktop.
DDD example - Value Object
// An example of a Value Object
class Price {
amountInEuroCents: number
inEuros(): number {
// implementation
}
// other logic
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment