mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-04 14:14:29 -04:00
12 lines
216 B
C#
12 lines
216 B
C#
namespace MediaBrowser.Model.Session
|
|
{
|
|
public class MessageCommand
|
|
{
|
|
public string Header { get; set; }
|
|
|
|
public string Text { get; set; }
|
|
|
|
public long? TimeoutMs { get; set; }
|
|
}
|
|
}
|