mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-31 00:54:59 +00:00
11 lines
316 B
C#
11 lines
316 B
C#
namespace SourceGit.Models {
|
|
/// <summary>
|
|
/// 贮藏
|
|
/// </summary>
|
|
public class Stash {
|
|
public string Name { get; set; } = "";
|
|
public string SHA { get; set; } = "";
|
|
public User Author { get; set; } = new User();
|
|
public string Message { get; set; } = "";
|
|
}
|
|
}
|