Files
hasaddon/onedrive-backup/Contracts/SyncFileData.cs
T
admins d70d81ebdf OneDrive Backup
OneDrive Backup
2023-07-28 22:36:06 +07:00

19 lines
479 B
C#

namespace hassio_onedrive_backup.Contracts
{
internal class SyncFileData
{
public SyncFileData(string path, string hash, long size)
{
Path = path ?? throw new ArgumentNullException(nameof(path));
Hash = hash ?? throw new ArgumentNullException(nameof(hash));
Size = size;
}
public string Path { get; }
public string Hash { get; }
public long Size { get; }
}
}