Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ISelfConstrainedPropertyInfo.cs « Xamarin.PropertyEditing - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b1cae08f4ffc098b22481efc64f80f6dd2b504e (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace Xamarin.PropertyEditing
{
	// Might want to replace constraints with a more generic interface, similar to availability
	public interface ISelfConstrainedPropertyInfo<out T>
	{
		T MaxValue { get; }
		T MinValue { get; }
	}
}