using LyricFlow.Core.Dtos; namespace LyricFlow.Core.Storage; public record Snapshot( int Id, string FilePath, string Content, double Timestamp ) { public SnapshotDto ToDto() { return new SnapshotDto(Id, FilePath, Content, Timestamp); } }