(* Options: Date: 2025-12-06 13:07:15 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: AssignRolePermissionRequest.* //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 AssignRolePermissionResponse() = member val Code:Int32 = new Int32() with get,set member val Message:String = null with get,set /// ///Phân quền cho role /// [] [] type AssignRolePermissionRequest() = interface IReturn interface IPost member val RoleId:Int32 = new Int32() with get,set member val PermissionsId:ResizeArray = new ResizeArray() with get,set