mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
97d352c241
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2460 21ef857c-d57f-4fe0-8362-d861dc6d29cd
25 lines
495 B
C#
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; }
|
|
}
|
|
}
|
|
}
|