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; }
|
|
|
|
|
}
|
|
|
|
|
}
|