WIP: track creation and deletion both in frontend and backend.

This commit is contained in:
2025-07-28 01:03:40 +02:00
parent ecadfb7033
commit cb38a509b5
15 changed files with 192 additions and 49 deletions

9
Source/Clip.cs Normal file
View File

@@ -0,0 +1,9 @@
using System;
namespace AudioEditor;
public class Clip
{
public TimeSpan StartTime { get; private set; }
public TimeSpan EndTime { get; private set; }
}