Multi-Platform Package Manager for Stable Diffusion
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
443 B

namespace StabilityMatrix.Core.Models.Packages.Extensions;
public record PackageExtension
{
public required string Author { get; init; }
public required string Title { get; init; }
public required Uri Reference { get; init; }
public required IEnumerable<Uri> Files { get; init; }
public string? Description { get; init; }
public string? InstallType { get; init; }
public bool IsInstalled { get; init; }
}