Files
actions/sh.actions.package-cleanup/Models/GiteaPackage.cs
edraft 98abbe661c
Some checks failed
Build on push / prepare (push) Successful in 5s
Build on push / build (push) Failing after 15s
Added package filtering
2026-02-14 20:48:40 +01:00

10 lines
313 B
C#

namespace sh.actions.package_cleanup.Models;
public class GiteaPackage
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string Version { get; set; } = string.Empty;
public string Type { get; set; } = string.Empty;
public DateTime CreatedAt { get; set; }
}