using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HySoft.IVRFlowEditor.Model
{
public class IVRAttribute : Attribute
{
///
/// IVR序列化的标志,需要序列化的程序必须具有此特性-
///
/// 序列化文件中显示的属性名称
/// 具有此特性的属性的类型
/// 具有此特性的属性要序列化的序列号
public IVRAttribute(string name,IVRSerializerType Type,int number)
{
Name = name;
IVRSerializerType = Type;
Number = number;
}
///
///列号
///
public int Number
{ get; set; }
public string Name
{ get; set; }
public IVRSerializerType IVRSerializerType
{ get; set; }
public object Object
{ get; set; }
///
/// 是否节点指针
///
public bool IsPosPoint
{ get; set; }
}
}