12 lines
288 B
C#
12 lines
288 B
C#
using System;
|
|
using isnd.Interfaces;
|
|
|
|
namespace isnd.Data.Packages.Catalog
|
|
{
|
|
public class PackageEntry : IObject
|
|
{
|
|
public string CommitId => throw new NotImplementedException();
|
|
|
|
public DateTimeOffset CommitTimeStamp => throw new NotImplementedException();
|
|
}
|
|
} |