10 lines
196 B
Plaintext
10 lines
196 B
Plaintext
|
|
namespace DTS.Common.Interactivity
|
||
|
|
{
|
||
|
|
public class Notification : INotification
|
||
|
|
{
|
||
|
|
public string Title { get; set; }
|
||
|
|
|
||
|
|
public object Content { get; set; }
|
||
|
|
}
|
||
|
|
}
|