mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 04:34:59 +00:00
10 lines
250 B
C#
10 lines
250 B
C#
namespace SourceGit.Models {
|
|
/// <summary>
|
|
/// LFS对象变更
|
|
/// </summary>
|
|
public class LFSChange {
|
|
public LFSObject Old;
|
|
public LFSObject New;
|
|
public bool IsValid => Old != null || New != null;
|
|
}
|
|
}
|