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