feat: restore default stream details
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -5,19 +5,19 @@ namespace NostrStreamer.ApiModel;
|
||||
public class PatchEvent
|
||||
{
|
||||
[JsonProperty("id")]
|
||||
public Guid Id { get; init; }
|
||||
public Guid? Id { get; init; }
|
||||
|
||||
[JsonProperty("title")]
|
||||
public string Title { get; init; } = null!;
|
||||
public string? Title { get; init; }
|
||||
|
||||
[JsonProperty("summary")]
|
||||
public string Summary { get; init; } = null!;
|
||||
public string? Summary { get; init; }
|
||||
|
||||
[JsonProperty("image")]
|
||||
public string Image { get; init; } = null!;
|
||||
public string? Image { get; init; }
|
||||
|
||||
[JsonProperty("tags")]
|
||||
public string[] Tags { get; init; } = Array.Empty<string>();
|
||||
public string[]? Tags { get; init; } = [];
|
||||
|
||||
[JsonProperty("content_warning")]
|
||||
public string? ContentWarning { get; init; }
|
||||
|
Reference in New Issue
Block a user