Files
LightlessServer/LightlessSyncServer/LightlessSyncShared/Models/ShardFileInventoryUpdateDto.cs

15 lines
392 B
C#

namespace LightlessSyncShared.Models;
public sealed record ShardFileInventoryUpdateDto
{
public long Sequence { get; init; }
public bool IsFullSnapshot { get; init; }
public List<string> Added { get; init; } = new();
public List<string> Removed { get; init; } = new();
}
public sealed record ShardFileInventoryUpdateAckDto
{
public long AppliedSequence { get; init; }
}