21 lines
428 B
C#
21 lines
428 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace MediaBrowser.ServerApplication.Native
|
|
{
|
|
/// <summary>
|
|
/// Class Autorun
|
|
/// </summary>
|
|
public static class Autorun
|
|
{
|
|
/// <summary>
|
|
/// Configures the specified autorun.
|
|
/// </summary>
|
|
/// <param name="autorun">if set to <c>true</c> [autorun].</param>
|
|
public static void Configure(bool autorun)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|