aspnetcore/tools/PullRequestSubmitter/Helpers/PropertyUpdate.cs

10 lines
222 B
C#

namespace PullRequestSubmitter.Helpers
{
class PropertyUpdate
{
public string Filename { get; set; }
public string PropertyName { get; set; }
public string NewValue { get; set; }
}
}