enhance: Git LFS support

This commit is contained in:
leo 2024-06-17 18:25:57 +08:00
parent e731807c91
commit 9a0b10bd9c
No known key found for this signature in database
GPG key ID: B528468E49CD0E58
24 changed files with 780 additions and 34 deletions

9
src/Models/LFSLock.cs Normal file
View file

@ -0,0 +1,9 @@
namespace SourceGit.Models
{
public class LFSLock
{
public string File { get; set; } = string.Empty;
public string User { get; set; } = string.Empty;
public long ID { get; set; } = 0;
}
}