mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-31 00:54:59 +00:00
10 lines
237 B
C#
10 lines
237 B
C#
namespace SourceGit.Models
|
|
{
|
|
public class Tag
|
|
{
|
|
public string Name { get; set; }
|
|
public string SHA { get; set; }
|
|
public string Message { get; set; }
|
|
public bool IsFiltered { get; set; }
|
|
}
|
|
}
|