mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-20 19:55:00 +00: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;
|
|
}
|
|
}
|