initial oogynize check in _ this actually used to work!
This commit is contained in:
31
AddIns/AddIn.Common/CommonTypes.cs
Normal file
31
AddIns/AddIn.Common/CommonTypes.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Foo.AddIn.Common
|
||||
{
|
||||
/// <summary>
|
||||
/// Common Return Value for Addins
|
||||
/// </summary>
|
||||
public class FuncRetVal
|
||||
{
|
||||
public FuncRetValEnum Type { get; set; }
|
||||
public string Message { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Useful for Returns where we
|
||||
/// need more information on failures
|
||||
/// </summary>
|
||||
public enum FuncRetValEnum
|
||||
{
|
||||
Action_Succeeded,
|
||||
Action_Failed,
|
||||
NoAction_Needed,
|
||||
ParameterInvalid,
|
||||
ArtifactUnavailable,
|
||||
FunctionallityNotSupported,
|
||||
ErrorThrown
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user