using CommunityToolkit.Mvvm.ComponentModel; namespace DeclarationAutomatization.Models; // Запись о загруженном файле СПРАВКИ с настройкой начального п/п public partial class SpravkaFileEntry : ObservableObject { [ObservableProperty] private string _filePath = ""; [ObservableProperty] private int _startingNumber = 1; public string FileName => System.IO.Path.GetFileName(FilePath); }