mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08:00
23 lines
No EOL
443 B
C#
23 lines
No EOL
443 B
C#
namespace SourceGit.Models
|
|
{
|
|
public class RevisionBinaryFile
|
|
{
|
|
public long Size { get; set; } = 0;
|
|
}
|
|
|
|
public class RevisionTextFile
|
|
{
|
|
public string FileName { get; set; }
|
|
public string Content { get; set; }
|
|
}
|
|
|
|
public class RevisionLFSObject
|
|
{
|
|
public LFSObject Object { get; set; }
|
|
}
|
|
|
|
public class RevisionSubmodule
|
|
{
|
|
public string SHA { get; set; }
|
|
}
|
|
} |