using System;
using System.Collections.Generic;
using System.Text;

namespace SiaSun.LMS.Model
{
    using System;
    using System.Runtime.Serialization;

    [Serializable]
    [DataContract]
    public class PLAN_ACTION_EXCUTE
    {
        private int _PLAN_ID;
        private string _ACTION_EVENT;

        ///<sumary>
        /// ¼Æ»®±àºÅ
        ///</sumary>
        [DataMember]
        public int PLAN_ID
        {
            get { return _PLAN_ID; }
            set { this._PLAN_ID = value; }
        }

        ///<sumary>
        /// ÏÂÒ»½áµã
        ///</sumary>
        [DataMember]
        public string ACTION_EVENT
        {
            get { return _ACTION_EVENT; }
            set { this._ACTION_EVENT = value; }
        }
    }
}