mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-27 19:24:47 +03:00
12 lines
203 B
C#
12 lines
203 B
C#
#pragma warning disable CS1591
|
|
|
|
using System.Diagnostics;
|
|
|
|
namespace MediaBrowser.Model.Diagnostics
|
|
{
|
|
public interface IProcessFactory
|
|
{
|
|
Process Create(ProcessStartInfo options);
|
|
}
|
|
}
|