mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-06-05 11:05:00 +00:00
19 lines
295 B
C#
19 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
|
|
}
|
|
}
|
|
}
|