using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Perforce.Model { public class SizeData { public string Path { get; set; } public int FileCount { get; set; } public long FileSize { get; set; } } }