Project Location

This commit is contained in:
Enner Pérez 2024-03-20 02:36:10 -05:00
parent 014e37e505
commit a1a14f8858
305 changed files with 9783 additions and 9783 deletions

View file

@ -1,38 +0,0 @@
using System;
using System.ComponentModel.DataAnnotations;
using System.Threading.Tasks;
namespace SourceGit.ViewModels
{
public class CreateGroup : Popup
{
[Required(ErrorMessage = "Group name is required!")]
public string Name
{
get => _name;
set => SetProperty(ref _name, value, true);
}
public CreateGroup(RepositoryNode parent)
{
_parent = parent;
View = new Views.CreateGroup() { DataContext = this };
}
public override Task<bool> Sure()
{
Preference.AddNode(new RepositoryNode()
{
Id = Guid.NewGuid().ToString(),
Name = _name,
IsRepository = false,
IsExpanded = false,
}, _parent);
return null;
}
private readonly RepositoryNode _parent = null;
private string _name = string.Empty;
}
}