public FileUpdateInfo(string path, FileUpdateAction action, uint oldCrc, uint newCrc) { Path = path; Action = action; OldCrc = oldCrc; NewCrc = newCrc; }
public UpdateRecipeFile(string name, string checksum, long size, FileUpdateAction action, string fileToDownload) { this.Name = name; this.Checksum = checksum; this.Size = size; this.Action = action; this.FileToDownload = fileToDownload; }