Channel9Downloader.Entities.Show.Show C# (CSharp) 메소드

Show() 공개 메소드

Initializes a new instance of the Show class. Copy constructor for Category.
public Show ( Category category ) : System.Runtime.Serialization
category Category The recurring category whose values should be copied.
리턴 System.Runtime.Serialization
        public Show(Category category)
        {
            Description = category.Description;
            RelativePath = category.RelativePath;
            Title = category.Title;
        }
Show