aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Helpers/Cache/ICacheableDataDigest.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-02-10 02:03:06 +0800
committercrupest <crupest@outlook.com>2021-02-10 02:03:06 +0800
commit253b06dfaa091d986a8714c081fd1e01679f538a (patch)
tree9200a7f6607889fcfb13b7ba14cc30db54fe3499 /BackEnd/Timeline/Helpers/Cache/ICacheableDataDigest.cs
parentbc2d6676276ea85a974f57f96b038e35e6ce7460 (diff)
downloadtimeline-253b06dfaa091d986a8714c081fd1e01679f538a.tar.gz
timeline-253b06dfaa091d986a8714c081fd1e01679f538a.tar.bz2
timeline-253b06dfaa091d986a8714c081fd1e01679f538a.zip
...
Diffstat (limited to 'BackEnd/Timeline/Helpers/Cache/ICacheableDataDigest.cs')
-rw-r--r--BackEnd/Timeline/Helpers/Cache/ICacheableDataDigest.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/BackEnd/Timeline/Helpers/Cache/ICacheableDataDigest.cs b/BackEnd/Timeline/Helpers/Cache/ICacheableDataDigest.cs
new file mode 100644
index 00000000..32519d7e
--- /dev/null
+++ b/BackEnd/Timeline/Helpers/Cache/ICacheableDataDigest.cs
@@ -0,0 +1,10 @@
+using System;
+
+namespace Timeline.Helpers.Cache
+{
+ public interface ICacheableDataDigest
+ {
+ string ETag { get; }
+ DateTime LastModified { get; }
+ }
+}