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