/* Options: Date: 2025-08-04 03:08:57 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: AddContractFileDraft.* //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; using Portal.Common; namespace Portal.Common { public enum ContractDocumentType { Draft = 0, Comment = 1, } } namespace Portal.ServiceDto { [Route("/user/{supplieruserid}/contract/{contractid}/contractversion/{contractversionid}/file/draft", "POST")] public partial class AddContractFileDraft : AddContractVersionFileBase, IReturn, IPost { public virtual ContractDocumentType DocumentType { get; set; } } public partial class AddContractVersionFileBase : ContractVersionBase { public virtual ContractDocumentType DocumentType { get; set; } } public partial class ContractBase { public virtual int SupplierUserId { get; set; } public virtual int ContractId { get; set; } } public partial class ContractVersionBase : ContractBase { public virtual int ContractVersionId { get; set; } } public partial class ModifyEntityResponse : ResponseBase { public virtual int Id { get; set; } } public partial class SaveFileEntityResponse : ModifyEntityResponse { public virtual int FileContentId { get; set; } } }