Files
RevokeMsgPatcher/RevokeMsgPatcher/Model/App.cs
2019-09-15 23:58:47 +08:00

16 lines
284 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RevokeMsgPatcher.Model
{
public class App
{
public string Name { get; set; }
public List<Version> Versions { get; set; }
}
}