sourcegit/src/Models/Branch.cs

13 lines
423 B
C#
Raw Normal View History

namespace SourceGit.Models {
2021-04-29 05:05:55 -07:00
public class Branch {
public string Name { get; set; }
public string FullName { get; set; }
public string Head { get; set; }
public bool IsLocal { get; set; }
public bool IsCurrent { get; set; }
public string Upstream { get; set; }
public string UpstreamTrackStatus { get; set; }
public string Remote { get; set; }
}
}