LANCommander/LANCommander.SDK/Models/ArchiveValidationConflict.cs
Pat Hartl 65be58fbf2 Working validate files dialog
Very basic, but it will compare local files against what's available on the server and allow you to selectively replace them. Save paths are ignored to avoid accidental replacement.

Implements #142
2024-11-14 20:53:08 -06:00

13 lines
333 B
C#

using System.IO;
namespace LANCommander.SDK.Models
{
public class ArchiveValidationConflict
{
public string FullName { get; set; }
public string Name { get; set; }
public uint Crc32 { get; set; }
public long Length { get; set; }
public FileInfo LocalFileInfo { get; set; }
}
}