Files
gpw_next/GPW.Api/GPW.Data/DBModels/ControlloDefrag.cs
T
2021-10-18 15:43:53 +02:00

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; }
}
}