Files
mirror-processhacker/1.x/trunk/ProcessHacker.Native/Mfs/MfsParameters.cs
T
wj32 97d352c241 added customizable block/cell sizes to MFS
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2460 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2009-12-19 00:11:22 +00:00

25 lines
495 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ProcessHacker.Native.Mfs
{
public class MfsParameters
{
private int _blockSize;
private int _cellSize;
public int BlockSize
{
get { return _blockSize; }
set { _blockSize = value; }
}
public int CellSize
{
get { return _cellSize; }
set { _cellSize = value; }
}
}
}