#nullable disable
using System.ComponentModel.DataAnnotations;
namespace MediaBrowser.Model.Session
{
///
/// A command to display a message on a client.
///
public class MessageCommand
{
///
/// Gets or sets the message header.
///
public string Header { get; set; }
///
/// Gets or sets the message text.
///
[Required(AllowEmptyStrings = false)]
public string Text { get; set; }
///
/// Gets or sets the timeout in milliseconds after which the message should be dismissed.
///
public long? TimeoutMs { get; set; }
}
}