/* Options: Date: 2025-08-04 03:33:55 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //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: AddSupplementary.* //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 System.IO; using Portal.ServiceDto; namespace Portal.ServiceDto { [Route("/tender/{tenderid}/user/{userid}/round/{tenderroundid}/supplementary", "POST")] public partial class AddSupplementary : TenderUserTenderRoundBase, IReturn, IPost { } public partial class ModifyEntityResponse : ResponseBase { public virtual int Id { get; set; } } public partial class ResponseBase { public virtual ResponseStatus ResponseStatus { get; set; } } public partial class TenderUserTenderRoundBase { public virtual int TenderId { get; set; } public virtual int UserId { get; set; } public virtual int TenderRoundId { get; set; } } }