mirror of
https://github.com/DarthAffe/StableDiffusion.NET.git
synced 2025-12-12 21:38:45 +00:00
22 lines
369 B
C#
22 lines
369 B
C#
namespace StableDiffusion.NET;
|
|
|
|
public class RocmBackend : IBackend
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public bool IsEnabled { get; set; } = true;
|
|
|
|
public int Priority => 10;
|
|
|
|
public bool IsAvailable => false;
|
|
|
|
public string PathPart { get; } = string.Empty;
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
internal RocmBackend() { }
|
|
|
|
#endregion
|
|
} |