aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Common/Models/Misc/Patch.cs
blob: ea5a4f1c6105e5ee2fe27afac9b3d28cc19c8c3f (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace DevHive.Common.Models.Misc
{
	public class Patch
	{
		public string Name { get; set; }
		public object Value { get; set; }
		public string Action { get; set; }
	}
}