RemoteContentProvider get items WIP

This commit is contained in:
2023-08-28 09:29:52 +02:00
parent 79971fe0f4
commit bb44ca0308
49 changed files with 765 additions and 118 deletions

View File

@@ -25,4 +25,5 @@
<ProjectReference Include="..\..\Library\InitableService\InitableService.csproj" />
</ItemGroup>
</Project>

View File

@@ -2,8 +2,8 @@ namespace FileTime.Core.Timeline;
public class PointInTime
{
public static readonly PointInTime Eternal = new PointInTime();
public static readonly PointInTime Present = new PointInTime();
public static readonly PointInTime Eternal = new();
public static readonly PointInTime Present = new();
private readonly List<Difference> _differences;
@@ -46,5 +46,5 @@ public class PointInTime
return merged;
}
public static PointInTime CreateEmpty() => new PointInTime();
public static PointInTime CreateEmpty() => new();
}