2025-04-15 12:10:19 +02:00

19 lines
424 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SmartZip.Logic
{
public class ZipItem
{
public DateTime CreationDate { get; set; }
public string PackName { get; set; }
public int FilesCount { get; set; }
//Adriano 20180302
public string Notes { get; set; }
//--Adriano 20180302
}
}