aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/MessageCommand.cs
blob: cc9db8e6c571468a8119b1f903f84cdd6fe89ea6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#nullable disable
#pragma warning disable CS1591

using System.ComponentModel.DataAnnotations;

namespace MediaBrowser.Model.Session
{
    public class MessageCommand
    {
        public string Header { get; set; }

        [Required(AllowEmptyStrings = false)]
        public string Text { get; set; }

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