(* Options: Date: 2025-12-06 13:04:26 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: AssignRoleRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace tvpl.api.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open ServiceStack.Web open System.IO [] type IResponseRequest = abstract Code:Int32 with get,set abstract Message:String with get,set [] type AssignRoleToUserResponse() = member val Code:Int32 = new Int32() with get,set member val Message:String = null with get,set /// ///Cập nhật role /// [] [] type AssignRoleRequest() = interface IReturn interface IPost member val RolesId:ResizeArray = new ResizeArray() with get,set member val UserId:Int32 = new Int32() with get,set