/* Options: Date: 2026-02-26 07:13:57 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: UpdateAppConfigsBySection.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using ServiceStack.Web; using System.IO; using tvpl.data.Constant; using tvpl.data.Models; using tvpl.api.ServiceModel; namespace tvpl.api.ServiceModel { [Route("/app-configs/{Section}", "POST")] public partial class UpdateAppConfigsBySection : IReturn { public UpdateAppConfigsBySection() { Items = new List{}; } public virtual AppConfigSection Section { get; set; } public virtual List Items { get; set; } } } namespace tvpl.data.Constant { public enum AppConfigSection { AppInfo, Smtp, Keycloak, } } namespace tvpl.data.Models { public partial class AppConfigItem { public virtual string Key { get; set; } public virtual string Value { get; set; } public virtual string Description { get; set; } } }