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