(* Options: Date: 2025-08-04 04:27:15 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: BrowseAllLegalRepresentative.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Portal.Common open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.IO [] type IConcurrencyStamp = abstract ConcurrencyStamp:String with get,set [] type LegalRepresentativeBase() = member val TenderId:Int32 = new Int32() with get,set member val UserId:Int32 = new Int32() with get,set member val ProcurementId:Int32 = new Int32() with get,set [] type ModifyRequestBase() = member val ConcurrencyStamp:String = null with get,set [] type ModifyLegalRepresentativeBase() = inherit ModifyRequestBase() member val ProcurementId:Int32 = new Int32() with get,set member val Position:String = null with get,set member val Name:String = null with get,set member val Address:String = null with get,set member val BirthDate:Nullable = new Nullable() with get,set member val Email:String = null with get,set [] type ResponseBase() = member val ResponseStatus:ResponseStatus = null with get,set [] type LegalRepresentativeDetails() = inherit ModifyLegalRepresentativeBase() member val Id:Int32 = new Int32() with get,set [] type BrowseAllLegalRepresentativeResponse() = inherit ResponseBase() member val LegalRepresentatives:ResizeArray = new ResizeArray() with get,set [] [] type BrowseAllLegalRepresentative() = inherit LegalRepresentativeBase() interface IReturn interface IPost