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

14 lines
263 B
C#
Raw Normal View History

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