namespace Unity.Notifications.iOS
{
///
/// Notification attachment.
/// Refer to Apple documentation for details.
///
///
public struct iOSNotificationAttachment
{
///
/// A unique identifier for the attachments. Will be auto-generated if left empty.
///
public string Id { get; set; }
///
/// URL to local file, accessible to the application.
///
public string Url { get; set; }
}
}