mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-25 11:24:02 +08:00
23 lines
647 B
C#
23 lines
647 B
C#
using System.Collections.Generic;
|
|
|
|
using Avalonia.Collections;
|
|
|
|
namespace SourceGit.ViewModels
|
|
{
|
|
public class ChangeCollectionAsTree
|
|
{
|
|
public List<ChangeTreeNode> Tree { get; set; } = new List<ChangeTreeNode>();
|
|
public AvaloniaList<ChangeTreeNode> Rows { get; set; } = new AvaloniaList<ChangeTreeNode>();
|
|
}
|
|
|
|
public class ChangeCollectionAsGrid
|
|
{
|
|
public AvaloniaList<Models.Change> Changes { get; set; } = new AvaloniaList<Models.Change>();
|
|
}
|
|
|
|
public class ChangeCollectionAsList
|
|
{
|
|
public AvaloniaList<Models.Change> Changes { get; set; } = new AvaloniaList<Models.Change>();
|
|
}
|
|
}
|