diff options
author | crupest <crupest@outlook.com> | 2020-08-31 22:39:18 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-08-31 22:39:18 +0800 |
commit | ff90e2819a1c0b7d1b605b45edaaaee7527c05b1 (patch) | |
tree | fdd69c951f68cda72ac1cbf017ca272ee1b783f5 /Timeline/Models/Timeline.cs | |
parent | c73388256aad039239cf3977d7b079e3f9323258 (diff) | |
download | timeline-ff90e2819a1c0b7d1b605b45edaaaee7527c05b1.tar.gz timeline-ff90e2819a1c0b7d1b605b45edaaaee7527c05b1.tar.bz2 timeline-ff90e2819a1c0b7d1b605b45edaaaee7527c05b1.zip |
Post info now contain data etag.
Diffstat (limited to 'Timeline/Models/Timeline.cs')
-rw-r--r-- | Timeline/Models/Timeline.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Timeline/Models/Timeline.cs b/Timeline/Models/Timeline.cs index 42906053..a5987577 100644 --- a/Timeline/Models/Timeline.cs +++ b/Timeline/Models/Timeline.cs @@ -43,6 +43,10 @@ namespace Timeline.Models public ImageTimelinePostContent(string dataTag) { DataTag = dataTag; }
public string Type { get; } = TimelinePostContentTypes.Image;
+
+ /// <summary>
+ /// The tag of the data. The tag of the entry in DataManager. Also the etag (not quoted).
+ /// </summary>
public string DataTag { get; set; }
}
|