isn/src/isnd/Data/Packages/Catalog/IObject.cs
2022-07-10 17:05:16 +01:00

14 lines
No EOL
261 B
C#

using System;
using Newtonsoft.Json;
namespace isnd.Interfaces
{
public interface IObject
{
[JsonProperty("commitId")]
string CommitId { get; }
[JsonProperty("commitTimeStamp")]
DateTime CommitTimeStamp { get; }
}
}