class

来源:互联网 发布:linux arp缓存表 编辑:程序博客网 时间:2024/04/19 19:43
 

using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

namespace ComputerDropDragControl
{
    /// <summary>
    /// 被观察者
    /// </summary>
    public class NodeFrameView
    {
        public NodeFrameView(string nodeID, string nodeName, int nodeSize, int nodeBeginUNo, int nodeEndNo, string frameID)
        {
            NodeID = nodeID;

            NodeName = nodeName;

            NodeSize = nodeSize;

            NodeBeginUNo = nodeBeginUNo;

            NodeEndUNo = nodeEndNo;

            FrameID = frameID;
        }

        public NodeFrameView(string nodeID, string nodeName, int nodeSize)
        {
            NodeID = nodeID;

            NodeName = nodeName;

            NodeSize = nodeSize;
        }

        public string NodeID { get; set; }

        public string NodeName { get; set; }

        public int NodeSize { get; set; }

        public int NodeBeginUNo { get; set; }

        public int NodeEndUNo { get; set; }

        public string FrameID { get; set; }
    }
}

原创粉丝点击