Ionite
1 year ago
1 changed files with 19 additions and 0 deletions
@ -0,0 +1,19 @@
|
||||
using System.Text.Json; |
||||
using System.Text.Json.Serialization; |
||||
|
||||
namespace StabilityMatrix.Core.Models.Api.CivitTRPC; |
||||
|
||||
public record CivitUserToggleFavoriteModelRequest : IFormattable |
||||
{ |
||||
[JsonPropertyName("modelId")] |
||||
public required int ModelId { get; set; } |
||||
|
||||
[JsonPropertyName("authed")] |
||||
public bool Authed { get; set; } = true; |
||||
|
||||
/// <inheritdoc /> |
||||
public string ToString(string? format, IFormatProvider? formatProvider) |
||||
{ |
||||
return JsonSerializer.Serialize(new { json = this }); |
||||
} |
||||
} |
Loading…
Reference in new issue