mirror of
https://github.com/LANCommander/photino.NET.git
synced 2026-08-30 14:23:05 -04:00
23 lines
498 B
C#
23 lines
498 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Photino.NET
|
|
{
|
|
/// <summary>
|
|
/// Specifies the template to use in a toast notification.
|
|
/// </summary>
|
|
public enum PhotinoNotificationType
|
|
{
|
|
ToastImageAndText01,
|
|
ToastImageAndText02,
|
|
ToastImageAndText03,
|
|
ToastImageAndText04,
|
|
ToastText01,
|
|
ToastText02,
|
|
ToastText03,
|
|
ToastText04,
|
|
}
|
|
}
|