fixing bugs
This commit is contained in:
parent
84a17aff4d
commit
b9e6bafc1e
41 changed files with 887 additions and 520 deletions
51
WebsitePanel/Sources/WebsitePanel.Providers.Base/OS/Quota.cs
Normal file
51
WebsitePanel/Sources/WebsitePanel.Providers.Base/OS/Quota.cs
Normal file
|
@ -0,0 +1,51 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace WebsitePanel.Providers.OS
|
||||
{
|
||||
public class Quota
|
||||
{
|
||||
#region Fields
|
||||
|
||||
private int _Size;
|
||||
private QuotaType _QuotaType;
|
||||
private int _Usage;
|
||||
|
||||
#endregion
|
||||
|
||||
#region Properties
|
||||
|
||||
public int Size
|
||||
{
|
||||
get { return _Size; }
|
||||
set { _Size = value; }
|
||||
}
|
||||
|
||||
public QuotaType QuotaType
|
||||
{
|
||||
get { return _QuotaType; }
|
||||
set { _QuotaType = value; }
|
||||
}
|
||||
|
||||
public int Usage
|
||||
{
|
||||
get { return _Usage; }
|
||||
set { _Usage = value; }
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
|
||||
public Quota()
|
||||
{
|
||||
_Size = -1;
|
||||
_QuotaType = QuotaType.Soft;
|
||||
_Usage = -1;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue