OF-DL/OF DL.Core/Models/FileNameFormatConfig.cs

13 lines
312 B
C#

namespace OF_DL.Models;
public class FileNameFormatConfig : IFileNameFormatConfig
{
public string? PaidPostFileNameFormat { get; set; }
public string? PostFileNameFormat { get; set; }
public string? PaidMessageFileNameFormat { get; set; }
public string? MessageFileNameFormat { get; set; }
}