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

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