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