isn/src/isnd/Data/Packages/Catalog/IObject.cs

14 lines
261 B
C#
Raw Normal View History

2021-08-23 03:21:08 +01:00
using System;
using Newtonsoft.Json;
2022-07-10 17:05:05 +01:00
namespace isnd.Interfaces
2021-08-23 03:21:08 +01:00
{
public interface IObject
{
[JsonProperty("commitId")]
string CommitId { get; }
[JsonProperty("commitTimeStamp")]
DateTime CommitTimeStamp { get; }
}
}