mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-05 15:55:02 +00:00
21 lines
428 B
C#
21 lines
428 B
C#
using System;
|
|
|
|
namespace PepperDash.Essentials
|
|
{
|
|
/// <summary>
|
|
/// Represents a ClientSpecificUpdateRequest
|
|
/// </summary>
|
|
public class ClientSpecificUpdateRequest
|
|
{
|
|
public ClientSpecificUpdateRequest(Action<string> action)
|
|
{
|
|
ResponseMethod = action;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the ResponseMethod
|
|
/// </summary>
|
|
public Action<string> ResponseMethod { get; private set; }
|
|
}
|
|
}
|