[+] 重新布局界面,完成控件与方法的绑定

This commit is contained in:
huiyadanli
2019-10-05 12:26:39 +08:00
parent 6f397033fd
commit edc06cf769
14 changed files with 594 additions and 379 deletions
+17
View File
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RevokeMsgPatcher.Model
{
public class Bag
{
public Dictionary<string, App> Apps { get; set; }
public string LatestVersion { get; set; }
public string Notice { get; set; }
}
}