| Name | Message | Date |
|---|---|---|
| 📄 AppSettings.cs | 4 days ago | |
| 📄 NoteCacheJsonContext.cs | 4 days ago | |
| 📄 NoteCacheStore.cs | 4 days ago | |
| 📄 NoteContentCache.cs | 3 days ago | |
| 📄 NotePreviewBuilder.cs | 3 days ago |
📄
src/Storage/NoteCacheJsonContext.cs
using System.Text.Json.Serialization; using NotesApp.Models; namespace NotesApp.Storage; // Source-generated serialization avoids reflection-based System.Text.Json, which is a // common trim-breakage source under this project's TrimMode=full. [JsonSerializable(typeof(List<NoteCacheEntry>))] public partial class NoteCacheJsonContext : JsonSerializerContext;