mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -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; }
|
||
|
}
|
||
|
}
|