aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/MessageCommand.cs
blob: 5ab58081512d534f74ba38dbf49d55b690686530 (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; }
    }
}