Files
view-by-distance-mklink-con…/Shared/Models/Properties/IPropertyConfiguration.cs
2023-02-05 13:17:05 -07:00

23 lines
896 B
C#

namespace View_by_Distance.Shared.Models.Properties;
public interface IPropertyConfiguration
{
public string DateGroup { init; get; }
public string[] IgnoreExtensions { init; get; }
public string PersonBirthdayFormat { init; get; }
public bool PropertiesChangedForProperty { init; get; }
public string[] PropertyContentCollectionFiles { init; get; }
public string ResultAllInOne { init; get; }
public string ResultCollection { init; get; }
public string ResultContent { init; get; }
public string ResultSingleton { init; get; }
public string[] ValidImageFormatExtensions { init; get; }
public string[] VerifyToSeason { init; get; }
public string? ModelName { get; }
public int? NumberOfJitters { get; }
public int? NumberOfTimesToUpsample { get; }
public string? PredictorModelName { get; }
public string RootDirectory { get; }
}