14 lines
No EOL
261 B
C#
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; }
|
|
}
|
|
} |