26 lines
433 B
C#
26 lines
433 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Core.Dto;
|
|
|
|
public class PackageDataDto
|
|
{
|
|
[JsonProperty("id")]
|
|
public string Id;
|
|
|
|
[JsonProperty("repository")]
|
|
public string Repository;
|
|
|
|
[JsonProperty("format")]
|
|
public string Format;
|
|
|
|
[JsonProperty("group")]
|
|
public string Group;
|
|
|
|
[JsonProperty("name")]
|
|
public string Name;
|
|
|
|
[JsonProperty("version")]
|
|
public string Version;
|
|
|
|
}
|