11 lines
179 B
C#
11 lines
179 B
C#
namespace ControlPlane.Core.Models;
|
|
|
|
public record GitCommit(
|
|
string Hash,
|
|
string ShortHash,
|
|
string Author,
|
|
string Date,
|
|
string Subject,
|
|
string[] Files
|
|
);
|