Libation/Source/AaxDecrypter/MultiConvertFileProperties.cs
Michael Bucari-Tovo 2ed1076fab Cleanup
2023-01-24 23:35:05 -07:00

14 lines
343 B
C#

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