aaf-easydiary

ADR and Diagram Writing Guide

📢 Purpose

ADR Guide

ADR Template

# [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

📋 Diagram Guide

Mermaid example

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