15 lines
392 B
C#
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; }
|
|
}
|