12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using SCC.Models;
- namespace SCC.Crawler.DT
- {
-
-
-
- [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
- public class ChartFunction : Attribute
- {
-
-
-
- public string Name;
-
-
-
- public ChartItemType ItemType;
-
-
-
- public ChartItemClassName ClassName;
- public ChartFunction(string name, ChartItemType itemType, ChartItemClassName className)
- {
- this.Name = name;
- this.ItemType = itemType;
- this.ClassName = className;
- }
- }
- }
|