aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/MessageCommand.cs
blob: b028765ed2d6d928c893753db7a5780406d79cb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace MediaBrowser.Model.Session
{
    public class MessageCommand
    {
        public string Header { get; set; }

        public string Text { get; set; }

        public long? TimeoutMs { get; set; }
    }
}