blob: 9626d70d89b8de1e69c613150fe5bde718d04c28 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
using Spacebar.Interop.Cdn.Abstractions;
namespace Spacebar.Cdn.Fsck;
public class MigrationFileStores {
public required IFileSource From { get; init; }
public required IFileSource To { get; init; }
}
|