mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			396 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			396 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using MediaBrowser.Model.Dto;
 | 
						|
 | 
						|
namespace MediaBrowser.Model.Querying
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Class ThemeMediaResult.
 | 
						|
    /// </summary>
 | 
						|
    public class ThemeMediaResult : QueryResult<BaseItemDto>
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the owner id.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The owner id.</value>
 | 
						|
        public Guid OwnerId { get; set; }
 | 
						|
    }
 | 
						|
}
 |