13 lines
312 B
C#
13 lines
312 B
C#
namespace OF_DL.Models.Config;
|
|
|
|
public class CreatorConfig : IFileNameFormatConfig
|
|
{
|
|
public string? PaidPostFileNameFormat { get; set; }
|
|
|
|
public string? PostFileNameFormat { get; set; }
|
|
|
|
public string? PaidMessageFileNameFormat { get; set; }
|
|
|
|
public string? MessageFileNameFormat { get; set; }
|
|
}
|