pcut_uwp/PCUT/PCUT.Entities/UpsertCategory.cs

14 lines
258 B
C#
Raw Normal View History

2024-08-21 16:02:56 +00:00
using Newtonsoft.Json;
namespace PCUT.Entities
{
public class UpsertCategory
{
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("description")]
public string Description { get; set; }
}
}