docs: add XML comments

This commit is contained in:
Andrew Welker
2025-07-04 12:33:32 -05:00
parent 562f0ba793
commit dc900f3f31
2 changed files with 107 additions and 37 deletions

View File

@@ -13,8 +13,8 @@ namespace PepperDash.Core
/// </summary>
public interface IKeyed
{
/// <summary>
/// Unique Key
/// <summary>
/// Gets the unique key associated with the object.
/// </summary>
[JsonProperty("key")]
string Key { get; }
@@ -25,8 +25,8 @@ namespace PepperDash.Core
/// </summary>
public interface IKeyName : IKeyed
{
/// <summary>
/// Isn't it obvious :)
/// <summary>
/// Gets the name associated with the current object.
/// </summary>
[JsonProperty("name")]
string Name { get; }