123456789101112131415161718 |
- using CommunityToolkit.Mvvm.ComponentModel;
- namespace DBBackupTool.Data;
- public partial class DBInfo : ObservableObject
- {
- [ObservableProperty]
- private string? _ServerAddress;
- [ObservableProperty]
- private int _Port;
- [ObservableProperty]
- private string? _DataBase;
- [ObservableProperty]
- private string? _User;
- [ObservableProperty]
- private string? _PassWord;
- }
|