aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System/WakeOnLanInfo.cs
blob: 031458735e71673a79b976baddb7b3b6299eb657 (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;
        }
    }
}