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