Libation/Source/AaxDecrypter/MultiConvertFileProperties.cs
2023-01-20 01:00:22 -07:00

16 lines
379 B
C#

using System;
using System.IO;
using FileManager;
namespace AaxDecrypter
{
public class MultiConvertFileProperties
{
public string OutputFileName { get; set; }
public int PartsPosition { get; set; }
public int PartsTotal { get; set; }
public string Title { get; set; }
public DateTime FileDate { get; } = DateTime.Now;
}
}