Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ObservableAttachmentCard.cs
1using CommunityToolkit.Mvvm.ComponentModel;
2using Microsoft.Maui.Controls;
3
5{
6 public partial class ObservableAttachmentCard : ObservableObject
7 {
8 [ObservableProperty]
9 private ImageSource? image;
10
11 [ObservableProperty]
12 private byte[]? imageBin;
13
14 [ObservableProperty]
15 private int imageRotation;
16
17 }
18}