📄 src/Models/NoteCacheEntry.cs
1 2 3 4 5 6 7 8 9 10 11
namespace NotesApp.Models;

public record NoteCacheEntry(
    string Id,
    string Name,
    string ETag,
    DateTimeOffset? LastModifiedUtc,
    string Preview,
    long? Size
);