aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System/WakeOnLanInfo.cs
blob: cde86717624c203d055e22bcefca6231f6c44bbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace MediaBrowser.Model.System
{
    public class WakeOnLanInfo
    {
        public string MacAddress { get; set; }
        public int Port { get; set; }

        public WakeOnLanInfo()
        {
            Port = 9;
        }
    }
}