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;

        }

    }
}

相关文章:

  • 2021-11-23
  • 2021-07-05
  • 2022-12-23
  • 2022-12-23
  • 2022-02-23
  • 2022-03-02
  • 2022-01-05
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-19
  • 2021-11-17
  • 2021-12-10
相关资源
相似解决方案