LANCommander/LANCommander.SDK/Models/ArchiveEntry.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

7 lines
No EOL
180 B
C#

public class ArchiveEntry
{
public string FullName { get; set; }
public string Name { get; set; }
public uint Crc32 { get; set; }
public long Length { get; set; }
}