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

IUniquelyIdentifiable.cs « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a310c93afe7db84d15e00cbd14c2a3dddb59791a (plain)
1
2
3
4
5
6
7
namespace System.Web.Mvc
{
    internal interface IUniquelyIdentifiable
    {
        string UniqueId { get; }
    }
}