aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Entities/UserAvatar.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Timeline/Entities/UserAvatar.cs')
-rw-r--r--Timeline/Entities/UserAvatar.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Timeline/Entities/UserAvatar.cs b/Timeline/Entities/UserAvatar.cs
index d549aea5..d47bb28b 100644
--- a/Timeline/Entities/UserAvatar.cs
+++ b/Timeline/Entities/UserAvatar.cs
@@ -11,13 +11,13 @@ namespace Timeline.Entities
public long Id { get; set; }
[Column("data")]
- public byte[] Data { get; set; }
+ public byte[]? Data { get; set; }
[Column("type")]
- public string Type { get; set; }
+ public string? Type { get; set; }
[Column("etag"), MaxLength(30)]
- public string ETag { get; set; }
+ public string? ETag { get; set; }
[Column("last_modified"), Required]
public DateTime LastModified { get; set; }