mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-02-18 23:41:53 +01:00
Make fields readonly Remove unnecessary casts Format document Remove unnecessary usings Sort usings Use file-level namespaces Order modifiers
13 lines
304 B
C#
13 lines
304 B
C#
using System;
|
|
|
|
namespace AaxDecrypter;
|
|
|
|
public class MultiConvertFileProperties
|
|
{
|
|
public required 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;
|
|
}
|