Files
Libation/Source/AaxDecrypter/MultiConvertFileProperties.cs
Michael Bucari-Tovo d67692355f Enable project-wide nullable reference types
Added DB migration for nullable types.
2026-02-05 12:43:05 -07:00

14 lines
353 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;
}
}