Files
Electron.NET/ElectronNET.API/Entities/NotificationOptions.cs
2017-10-03 04:40:37 +02:00

9 lines
174 B
C#

namespace ElectronNET.API.Entities
{
public class NotificationOptions
{
public string Title { get; set; }
public string Body { get; set; }
}
}