23 lines
663 B
C#
23 lines
663 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace GPW.Data.DBModels
|
|
{
|
|
public partial class ControlloDefrag
|
|
{
|
|
public string Db { get; set; }
|
|
public DateTime Data { get; set; }
|
|
public int Riga { get; set; }
|
|
public string Oggetto { get; set; }
|
|
public string IndexName { get; set; }
|
|
public decimal? AvgFragmentationInPercent { get; set; }
|
|
public long? PageCount { get; set; }
|
|
public string TypeDesc { get; set; }
|
|
public byte? FillFactor { get; set; }
|
|
public string CmdReorganize { get; set; }
|
|
public string CmdRebuild { get; set; }
|
|
}
|
|
}
|