mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
18 lines
366 B
C#
18 lines
366 B
C#
namespace SourceGit.Git {
|
|
|
|
/// <summary>
|
|
/// Object filtered by LFS
|
|
/// </summary>
|
|
public class LFSObject {
|
|
|
|
/// <summary>
|
|
/// Object id
|
|
/// </summary>
|
|
public string OID { get; set; }
|
|
|
|
/// <summary>
|
|
/// Object size.
|
|
/// </summary>
|
|
public long Size { get; set; }
|
|
}
|
|
}
|