mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-01-03 03:18:27 -05:00
14 lines
343 B
C#
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;
|
|
}
|
|
}
|