Update API

This commit is contained in:
Chris Chen
2022-09-30 09:40:42 -07:00
parent 184db15773
commit b33c0d8286
55 changed files with 3877 additions and 360 deletions
+16
View File
@@ -0,0 +1,16 @@
using Newtonsoft.Json;
namespace LineMessaging
{
public class LineUsage
{
[JsonProperty("totalUsage")]
public int TotalUsage { get; set; }
}
public class LineGroupProfile
{
[JsonProperty("groupName")]
public string GroupName { get; set; }
}
}