mirror of
https://github.com/marticliment/WinGet-API-from-CSharp
synced 2026-06-21 13:57:37 +00:00
14 lines
231 B
C#
14 lines
231 B
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
namespace WindowsPackageManager.Interop;
|
|
|
|
public enum ClsidContext
|
|
{
|
|
// Production CLSID Guids
|
|
Prod,
|
|
|
|
// Development CLSID Guids
|
|
Dev,
|
|
}
|