mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			831 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			831 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Emby.Server.Implementations
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Specifies the contract for server startup options.
 | |
|     /// </summary>
 | |
|     public interface IStartupOptions
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets the value of the --ffmpeg command line option.
 | |
|         /// </summary>
 | |
|         string? FFmpegPath { get; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets a value indicating whether to run as service by the --service command line option.
 | |
|         /// </summary>
 | |
|         bool IsService { get; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the value of the --package-name command line option.
 | |
|         /// </summary>
 | |
|         string? PackageName { get; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the value of the --published-server-url command line option.
 | |
|         /// </summary>
 | |
|         string? PublishedServerUrl { get; }
 | |
|     }
 | |
| }
 |