mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-22 05:40:43 +08:00
10 lines
204 B
C#
10 lines
204 B
C#
namespace SourceGit.Models {
|
|
/// <summary>
|
|
/// LFS对象
|
|
/// </summary>
|
|
public class LFSObject {
|
|
public string OID { get; set; }
|
|
public long Size { get; set; }
|
|
}
|
|
}
|