21 lines
403 B
C#
21 lines
403 B
C#
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; }
|
|
|
|
}
|
|
}
|