Current section
Files
Jump to
Current section
Files
lib/accounting/account_transaction.ex
defmodule Accounting.AccountTransaction do
@moduledoc """
An account transaction struct.
"""
@type t :: %__MODULE__{}
defstruct [:amount, :description, :date]
end