mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-26 03:40:45 +08:00
7 lines
169 B
C#
7 lines
169 B
C#
namespace SourceGit.Models {
|
|
public class LFSObject {
|
|
public string Oid { get; set; } = string.Empty;
|
|
public long Size { get; set; } = 0;
|
|
}
|
|
}
|