mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-24 02:40:24 +08:00
10 lines
227 B
C#
10 lines
227 B
C#
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;
|
|
}
|
|
}
|