mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 02:24:22 +00:00
13 lines
333 B
C#
13 lines
333 B
C#
namespace Oqtane.Models
|
|
{
|
|
public class Package
|
|
{
|
|
public string PackageId { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public string Owner { get; set; }
|
|
public string Version { get; set; }
|
|
public long Downloads { get; set; }
|
|
}
|
|
}
|