Updated MCT architecture (markdown)

Brandon Minnick 2023-03-05 17:55:53 -08:00
Родитель f61236e07e
Коммит 569b488a7a
1 изменённых файлов: 1 добавлений и 1 удалений

@ -49,7 +49,7 @@ On the `Controls` project we implement also some concepts that also just exist i
In the snippet below you can see an example of an implementation of the `IButton` interface defined on `Core`.
```csharp
public Button : View, IButton
public class Button : View, IButton
{
public static readonly BindableProperty ClickCommandProperty =
BindableProperty.Create(nameof(ClickCommand), typeof(ICommand), typeof(Button));