aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Helpers/Cache/ICacheableDataDigest.cs
blob: 32519d7e7a770c71eb4fd4f4690d8427af1a976f (plain)
1
2
3
4
5
6
7
8
9
10
using System;

namespace Timeline.Helpers.Cache
{
    public interface ICacheableDataDigest
    {
        string ETag { get; }
        DateTime LastModified { get; }
    }
}