8 lines
205 B
C#
8 lines
205 B
C#
namespace StellaOps.Evidence.Retention;
|
|
|
|
public sealed record TierMigrationResult
|
|
{
|
|
public required int MigratedCount { get; init; }
|
|
public IReadOnlyList<MigratedItem> Items { get; init; } = [];
|
|
}
|