Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 391 Bytes

File metadata and controls

6 lines (5 loc) · 391 Bytes

AGENTS.md

C# / MVVM conventions

  • Prefer CommunityToolkit.Mvvm [ObservableProperty] over manual backing fields and boilerplate setters when a property only needs standard change notification.
  • Use [NotifyPropertyChangedFor(...)] for dependent UI properties.
  • Prefer explicit property implementations only when validation, coercion, or other nontrivial side effects are required.