mirror of
https://github.com/huiyadanli/RevokeMsgPatcher.git
synced 2025-05-25 23:36:07 +08:00
18 lines
343 B
C#
18 lines
343 B
C#
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; }
|
|
}
|
|
}
|