mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 04:34:59 +00:00
9 lines
205 B
C#
9 lines
205 B
C#
namespace SourceGit.Models {
|
|
/// <summary>
|
|
/// 文件大小变化
|
|
/// </summary>
|
|
public class FileSizeChange {
|
|
public long OldSize = 0;
|
|
public long NewSize = 0;
|
|
}
|
|
}
|