[This documentation is for preview only, is not supported, and is subject to change in later releases.]

using System.Collections.Generic;

 

namespace MS.SDKMSDNKeywordIndex

 

{

    public class TopicItem

    {

 

        public TopicItem(string title, string id, string version, string locale)

        {

            this.Id = id;

            this.Title = title;

            this.Locale = locale;

            this.Version = version;

 

        }

 

        public TopicItem()

        {

 

        }

 

        public string Title { get; set; }

        public string Locale { get; set; }

        public string Id { get; set; }

        public string Version { get; set; }

    }

}