Fix Content urls to 1024
This commit is contained in:
@@ -12,9 +12,9 @@ public class Content
|
||||
public DateTimeOffset? DeletedAt { get; set; }
|
||||
[MaxLength(128)] public required string Title { get; set; }
|
||||
|
||||
[MaxLength(512)] public string? ThumbnailUrl { get; set; } = "";
|
||||
[MaxLength(1024)] public string? ThumbnailUrl { get; set; } = "";
|
||||
[MaxLength(2048)] public string Description { get; set; } = "";
|
||||
[MaxLength(2048)] public string? HtmlFileUrl { get; set; } = "";
|
||||
[MaxLength(1024)] public string? HtmlFileUrl { get; set; } = "";
|
||||
public IList<ContentReaction> Reactions { get; set; } = new List<ContentReaction>();
|
||||
public string[]? Urls { get; init; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user