mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
16 lines
303 B
C#
16 lines
303 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|