You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
685 B
29 lines
685 B
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace AIK.ViewModels.IDCardCopy;
|
|
|
|
public partial class SectorContentItem : ObservableObject
|
|
{
|
|
[ObservableProperty]
|
|
private string _sectorLabel = string.Empty;
|
|
|
|
[ObservableProperty]
|
|
private string _blockLabel = string.Empty;
|
|
|
|
[ObservableProperty]
|
|
private string _dataPreview = string.Empty;
|
|
|
|
[ObservableProperty]
|
|
private string _status = string.Empty;
|
|
|
|
public SectorContentItem Clone()
|
|
{
|
|
return new SectorContentItem
|
|
{
|
|
SectorLabel = SectorLabel,
|
|
BlockLabel = BlockLabel,
|
|
DataPreview = DataPreview,
|
|
Status = Status
|
|
};
|
|
}
|
|
}
|
|
|