mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
(cherry picked from commit a1718e392b)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
18 lines
358 B
C#
18 lines
358 B
C#
#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; }
|
|
}
|
|
}
|