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