jellyfin-plugin-webhook/Jellyfin.Plugin.Webhook/Destinations/Generic/GenericOptionValue.cs

18 lines
408 B
C#

namespace Jellyfin.Plugin.Webhook.Destinations.Generic;
/// <summary>
/// Generic option value.
/// </summary>
public class GenericOptionValue
{
/// <summary>
/// Gets or sets the option key.
/// </summary>
public string Key { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the option value.
/// </summary>
public string Value { get; set; } = string.Empty;
}