123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Edge.Core.UniversalApi
- {
-
-
-
-
-
-
- [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Property, AllowMultiple = true)]
- public class UniversalApiAttribute : Attribute
- {
- public string Name { get; set; }
-
-
-
- public bool IgnoreApi { get; set; }
- public string Description { get; set; }
-
-
-
-
- public string InputParametersExampleJson { get; set; }
-
-
-
- public Type EventDataType { get; set; }
-
-
-
-
-
-
-
-
- }
- }
|