Skip to content
This repository has been archived by the owner on Jul 29, 2022. It is now read-only.

Commit

Permalink
Add the 'Labels' property to the TemplateCategory model
Browse files Browse the repository at this point in the history
Resolves #46
  • Loading branch information
Jericho committed Nov 19, 2017
1 parent 14ff193 commit d928193
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Source/CakeMail.RestClient/Models/TemplateCategory.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using CakeMail.RestClient.Utilities;
using Newtonsoft.Json;
using System.Collections.Generic;

namespace CakeMail.RestClient.Models
{
Expand Down Expand Up @@ -36,6 +37,9 @@ public class TemplateCategory
[JsonProperty("level")]
public long Level { get; set; }

[JsonProperty("labels")]
public KeyValuePair<string, string>[] Labels { get; set; }

#endregion
}
}

0 comments on commit d928193

Please sign in to comment.