13 lines
251 B
C#
13 lines
251 B
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT license.
|
|
|
|
//using Microsoft.MobileBlazorBindings.Core;
|
|
|
|
namespace CPF.Razor
|
|
{
|
|
public interface ICpfElementHandler : IElementHandler
|
|
{
|
|
UIElement Element { get; }
|
|
}
|
|
}
|