mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
34 lines
874 B
C#
34 lines
874 B
C#
using Avalonia.Media.Imaging;
|
|
|
|
namespace SourceGit.Models
|
|
{
|
|
public class RevisionBinaryFile
|
|
{
|
|
public long Size { get; set; } = 0;
|
|
}
|
|
|
|
public class RevisionImageFile
|
|
{
|
|
public Bitmap Image { get; set; } = null;
|
|
public long FileSize { get; set; } = 0;
|
|
public string ImageType { get; set; } = string.Empty;
|
|
public string ImageSize => Image != null ? $"{Image.PixelSize.Width} x {Image.PixelSize.Height}" : "0 x 0";
|
|
}
|
|
|
|
public class RevisionTextFile
|
|
{
|
|
public string FileName { get; set; }
|
|
public string Content { get; set; }
|
|
}
|
|
|
|
public class RevisionLFSObject
|
|
{
|
|
public LFSObject Object { get; set; }
|
|
}
|
|
|
|
public class RevisionSubmodule
|
|
{
|
|
public Commit Commit { get; set; } = null;
|
|
public string FullMessage { get; set; } = string.Empty;
|
|
}
|
|
}
|