aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/Sdk/Arp/Detail/ApplicationInstance.cs
blob: 5eb0ab184279ec4880ca2873055a8a7f8e535a94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
using Ryujinx.Horizon.Sdk.Ns;

namespace Ryujinx.Horizon.Sdk.Arp.Detail
{
    class ApplicationInstance
    {
        public ulong Pid { get; set; }
        public ApplicationLaunchProperty? LaunchProperty { get; set; }
        public ApplicationProcessProperty? ProcessProperty { get; set; }
        public ApplicationControlProperty? ControlProperty { get; set; }
        public ApplicationCertificate? Certificate { get; set; }
    }
}