(* Options: Date: 2025-12-06 13:35:53 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: GetAllRoleReqest.* //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 Roles() = member val Id:Int32 = new Int32() with get,set [] member val Name:String = null with get,set member val CreatedAt:Nullable = new Nullable() with get,set member val DeletedAt:Nullable = new Nullable() with get,set member val UpdatedAt:Nullable = new Nullable() with get,set member val UpdatedBy:Nullable = new Nullable() with get,set member val DeletedBy:Nullable = new Nullable() with get,set member val CreatedBy:Nullable = new Nullable() with get,set [] member val Permission:ResizeArray = new ResizeArray() with get,set [] type GetAllRoleResponse() = member val Roles:ResizeArray = new ResizeArray() with get,set member val Code:Int32 = new Int32() with get,set member val Message:String = null with get,set /// ///Lấy tất cả các Role /// [] [] type GetAllRoleReqest() = interface IReturn interface IGet