photino.NET/Photino.NET/PhotinoNotificationType.cs
2025-09-06 22:16:59 -05:00

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,
}
}