17 lines
539 B
C#
17 lines
539 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace Sai.RvKits_Setup
|
|||
|
|
{
|
|||
|
|
public static class Settings
|
|||
|
|
{
|
|||
|
|
public const string AddInAppName = "Sai.RvKits";
|
|||
|
|
public const string DllFileName = "Sai.RvKits.dll";
|
|||
|
|
public const string AddInFileName = "Sai.RvKits.addin";
|
|||
|
|
public const string VendorDescription = "Zhanggg";
|
|||
|
|
public const string VendorId = "Zhanggg";
|
|||
|
|
public static List<string> RibbonFullClassNames = new List<string>()
|
|||
|
|
{
|
|||
|
|
"Sai.RvKits.UIApp.RvApp",
|
|||
|
|
};
|
|||
|
|
}
|
|||
|
|
}
|