mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-24 02:40:24 +08:00
11 lines
250 B
C#
11 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;
|
|
}
|
|
}
|