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 }; } }