mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-24 10:50:52 +08:00
12 lines
316 B
C#
12 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; } = "";
|
|
}
|
|
}
|