using System;
namespace PepperDash.Essentials
{
///
/// Send an update request for a specific client
///
[Obsolete]
public class ClientSpecificUpdateRequest
{
///
/// Initialize an instance of the class.
///
///
public ClientSpecificUpdateRequest(Action action)
{
ResponseMethod = action;
}
///
/// Gets or sets the ResponseMethod
///
public Action ResponseMethod { get; private set; }
}
}