[+] 重新架构逻辑

This commit is contained in:
huiyadanli
2019-09-18 09:08:32 +08:00
parent 90076240b1
commit 92594da959
13 changed files with 304 additions and 41 deletions
+3 -1
View File
@@ -10,6 +10,8 @@ namespace RevokeMsgPatcher.Model
{
public string Name { get; set; }
public List<Version> Versions { get; set; }
public string[] ModifyFilePaths { get; set; }
public List<BinaryFile> ModifyFileInfos { get; set; }
}
}
+4 -1
View File
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@@ -8,7 +9,9 @@ namespace RevokeMsgPatcher.Model
{
public class BinaryFile
{
public string Name { get; set; }
//public string Name { get {return Path.GetFileName(RelativePath); } }
public string RelativePath { get; set; }
public string Version { get; set; }