mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07: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; } = "";
|
||
|
}
|
||
|
}
|