Merge pull request #5631 from BrianCArnold/FixMessageCommand

(cherry picked from commit a1718e392b)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
Claus Vium
2021-04-07 14:36:08 +02:00
committed by Joshua M. Boniface
parent 37b969304a
commit bc27c2b7da
2 changed files with 8 additions and 11 deletions

View File

@@ -1,12 +1,15 @@
#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; }