Import from internal git
This commit is contained in:
25
Core/Dto/PackageDataDto.cs
Normal file
25
Core/Dto/PackageDataDto.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user