mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-23 05:05:00 +00:00
feature: simple self-update implementation (#29)
This commit is contained in:
parent
86a1148148
commit
92e065feba
15 changed files with 494 additions and 7 deletions
15
src/SourceGit/ViewModels/SelfUpdate.cs
Normal file
15
src/SourceGit/ViewModels/SelfUpdate.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using CommunityToolkit.Mvvm.ComponentModel;
|
||||
|
||||
namespace SourceGit.ViewModels
|
||||
{
|
||||
public class SelfUpdate : ObservableObject
|
||||
{
|
||||
public object Data
|
||||
{
|
||||
get => _data;
|
||||
set => SetProperty(ref _data, value);
|
||||
}
|
||||
|
||||
private object _data = null;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue