一段完整的Silverlight演示代码[类]

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace SilverlightInterview.Web
{
    public class Note
    {
        public Note() { }

        public string ID
        {
            get;
            set;
        }

        public string Topic
        {
            get;
            set;
        }

        public string Remark
        {
            get;
            set;

        }

    }
}

关于作者: 王昕(QQ:475660) 在广州工作生活30余年。十多年开发经验,在Java、即时通讯、NoSQL、BPM、大数据等领域较有经验。
目前维护的开源产品:https://gitee.com/475660
原文地址:https://www.cnblogs.com/starcrm/p/1356490.html