pcut_uwp/PCUT/PCUT.Entities/UpsertMetadata.cs

21 lines
403 B
C#
Raw Normal View History

2024-08-21 16:02:56 +00:00
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace PCUT.Entities
{
public class UpsertMetadata
{
[JsonProperty("type")]
public string Type { get; set; }
[JsonProperty("value")]
public string Value { get; set; }
[JsonProperty("categoryId")]
public string CategoryId { get; set; }
}
}