27 lines
892 B
C#
27 lines
892 B
C#
using System.Collections.Generic;
|
|
using xDataService.Constants;
|
|
using xStringService.Models.Dtos;
|
|
|
|
namespace xTermsAndConditionsService.Configurations
|
|
{
|
|
/// <summary>
|
|
/// Terms and Conditions Configuration ...
|
|
/// </summary>
|
|
public class XTermsAndConditionsServiceConfiguration
|
|
{
|
|
/// <summary>
|
|
/// Terms And Conditions Resource Title in XString Table ...
|
|
/// </summary>
|
|
public string ResourceTitle { get; set; } = "terms_and_conditions";
|
|
|
|
/// <summary>
|
|
/// Seeding Mode for Terms and Conditions ...
|
|
/// </summary>
|
|
public XDbSeedingMode SeedingMode { get; set; } = XDbSeedingMode.AddIfNotExists;
|
|
|
|
/// <summary>
|
|
/// Default Terms and Conditions for Add to Databse on App Startup ...
|
|
/// </summary>
|
|
public List<XStringDto> TermsAndConditions { get; set; } = null;
|
|
}
|
|
} |