mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-25 11:24:02 +08:00
20 lines
295 B
C#
20 lines
295 B
C#
using System;
|
|
|
|
namespace SourceGit.Models
|
|
{
|
|
public class Count : IDisposable
|
|
{
|
|
public int Value { get; set; } = 0;
|
|
|
|
public Count(int value)
|
|
{
|
|
Value = value;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
// Ignore
|
|
}
|
|
}
|
|
}
|