/
vasiukoff
/
sg
Обзор
Документация
Войти
/
vasiukoff
/
sg
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/ViewModels/Workspace.cs
66 строк
1 KB
Massimo
feat: add workspace-specific default clone directory functionality (#1183)
14 апр 2025, 11:41
Не верифицирован
14 апр 2025, 11:41
f14a666
Код
Авторство
О чём код?
using System.Collections.Generic; using Avalonia.Media; using CommunityToolkit.Mvvm.ComponentModel; namespace SourceGit.ViewModels { public class Workspace : ObservableObject { public string Name { get => _name; set => SetProperty(ref _name, value); } public uint Color { get => _color; set { if (SetProperty(ref _color, value)) OnPropertyChanged(nameof(Brush)); } } public List<string> Repositories { get; set; } = new List<string>(); public int ActiveIdx { get; set; } = 0; public bool IsActive { get => _isActive; set => SetProperty(ref _isActive, value); } public bool RestoreOnStartup { get => _restoreOnStartup; set => SetProperty(ref _restoreOnStartup, value); } public string DefaultCloneDir { get => _defaultCloneDir; set => SetProperty(ref _defaultCloneDir, value); } public IBrush Brush { get => new SolidColorBrush(_color); } private string _name = string.Empty; private uint _color = 4278221015; private bool _isActive = false; private bool _restoreOnStartup = true; private string _defaultCloneDir = string.Empty; } }