mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-31 16:03:31 -05:00
13 lines
241 B
C#
13 lines
241 B
C#
namespace MediaBrowser.Model.System
|
|
{
|
|
public class WakeOnLanInfo
|
|
{
|
|
public string MacAddress { get; set; }
|
|
public int Port { get; set; }
|
|
|
|
public WakeOnLanInfo()
|
|
{
|
|
Port = 9;
|
|
}
|
|
}
|
|
} |