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.
|
|
|
namespace StabilityMatrix.Core.Models;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Defines a remote downloadable resource.
|
|
|
|
/// </summary>
|
|
|
|
public readonly record struct RemoteResource
|
|
|
|
{
|
|
|
|
public required Uri Url { get; init; }
|
|
|
|
|
|
|
|
public Uri[]? FallbackUrls { get; init; }
|
|
|
|
|
|
|
|
public string? FileNameOverride { get; init; }
|
|
|
|
|
|
|
|
public string FileName => FileNameOverride ?? Path.GetFileName(Url.ToString());
|
|
|
|
|
|
|
|
public string? HashSha256 { get; init; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Type info, for remote models this is <see cref="SharedFolderType"/> of the model.
|
|
|
|
/// </summary>
|
|
|
|
public object? ContextType { get; init; }
|
|
|
|
|
|
|
|
public Uri? InfoUrl { get; init; }
|
|
|
|
|
|
|
|
public string? LicenseType { get; init; }
|
|
|
|
|
|
|
|
public Uri? LicenseUrl { get; init; }
|
|
|
|
|
|
|
|
public string? Author { get; init; }
|
|
|
|
|
|
|
|
public string? ByAuthor => string.IsNullOrEmpty(Author) ? null : $"by {Author}";
|
|
|
|
}
|