This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.

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; }
}
}