# [ADR-0001] Short Title
## Status
Accepted
## Context
(Describe the problem and background.)
## Decision
(Describe the chosen decision concisely.)
## Rationale
(Why this decision? Compare alternatives.)
## Consequences
(Benefits, drawbacks, migration notes.)
## Date
YYYY-MM-DD
## Authors
- Name <email>
## References
- Link or note
classDiagram
class Diary {
<<RealmObject>>
+Int sequence <<PrimaryKey>>
+String? title
+Location? location
}
class Location {
<<RealmObject>>
+String? address
+Double latitude
+Double longitude
}
Diary "1" --> "0..1" Location : location