mirror of
https://github.com/FalloutCollaborationProject/FCP-Mod-Updater.git
synced 2026-07-27 17:04:05 -07:00
13 lines
265 B
C#
13 lines
265 B
C#
namespace FCPModUpdater.Models;
|
|
|
|
public record GitCommitInfo(
|
|
string Hash,
|
|
string ShortHash,
|
|
string Message,
|
|
string Author,
|
|
DateTimeOffset Date
|
|
)
|
|
{
|
|
public static readonly GitCommitInfo Invalid = new GitCommitInfo("", "", "", "", default);
|
|
}
|