mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-12 11:15:08 +00:00
docs: add XML comments for messengers
This commit is contained in:
@@ -2,8 +2,15 @@
|
||||
|
||||
namespace PepperDash.Essentials.AppServer
|
||||
{
|
||||
/// <summary>
|
||||
/// Generic container for simple mobile control message content with a single value
|
||||
/// </summary>
|
||||
/// <typeparam name="T">The type of the value contained in the message</typeparam>
|
||||
public class MobileControlSimpleContent<T>
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the value of the message content
|
||||
/// </summary>
|
||||
[JsonProperty("value", NullValueHandling = NullValueHandling.Ignore)]
|
||||
public T Value { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user