Class Tag
- Namespace
- CivitaiSharp.Core.Models
- Assembly
- CivitaiSharp.Core.dll
Tag returned by the public API.
public sealed record Tag : IEquatable<Tag>
- Inheritance
-
Tag
- Implements
- Inherited Members
Constructors
Tag(string, string)
Tag returned by the public API.
public Tag(string Name, string Link)
Parameters
NamestringThe name of the tag. Maps to JSON property "name".
LinkstringURL to retrieve all models associated with this tag. Maps to JSON property "link".
Properties
Link
URL to retrieve all models associated with this tag. Maps to JSON property "link".
[JsonPropertyName("link")]
public string Link { get; init; }
Property Value
Name
The name of the tag. Maps to JSON property "name".
[JsonPropertyName("name")]
public string Name { get; init; }