Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Update memo struct to use additional structure as memo item instead of embedded structure #77

Merged
merged 1 commit into from
Sep 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions data/memo.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
package data

type MemoItem struct {
MemoType VariableLength
MemoData VariableLength
MemoFormat VariableLength
}

type Memo struct {
Memo struct {
MemoType VariableLength
MemoData VariableLength
MemoFormat VariableLength
}
Memo MemoItem
}

type Memos []Memo