IPASorter/IPASorter/FileClass.cs
2021-10-03 19:45:36 -07:00

22 lines
559 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace IPASorter
{
public class IPAFile
{
public string path { get; set; }
public string md5sum { get; set; }
public string fileName { get; set; }
public string CFBundleIdentifier { get; set; }
public string CFBundleVersion { get; set; }
public string MinimumOSVersion { get; set; }
public string CFBundleDisplayName { get; set; }
}
public class AppList
{
public IPAFile[] apps { get; set; }
}
}