Table of Contents

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

Name string

The name of the tag. Maps to JSON property "name".

Link string

URL to retrieve all models associated with this tag. Maps to JSON property "link".

Properties

URL to retrieve all models associated with this tag. Maps to JSON property "link".

[JsonPropertyName("link")]
public string Link { get; init; }

Property Value

string

Name

The name of the tag. Maps to JSON property "name".

[JsonPropertyName("name")]
public string Name { get; init; }

Property Value

string