10 lines
313 B
C#
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; }
|
|
} |