Files
git-tfs/GitTfs/Core/ITfsCheckinNote.cs
T
Philippe Miossec b18fea8b6a Formatting code using CodeFormatter
CodeFormatter.exe /rule-:FieldNames /nounicode /nocopyright .\GitTfs.sln
2016-10-18 22:10:22 +02:00

9 lines
152 B
C#

namespace Sep.Git.Tfs.Core
{
public interface ITfsCheckinNote
{
string Name { get; set; }
string Value { get; set; }
}
}