(* Options: Date: 2026-01-22 01:41:16 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pecuario-backend.develsystems.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: SetDeviceId.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Pecuario.Backend.Application.DTOs open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type Status() = member val Message:String = null with get,set member val StatusCode:Int32 = new Int32() with get,set [] type BaseResponse() = member val Status:Status = null with get,set [] type SetDeviceIdResponse() = inherit BaseResponse() [] [] type SetDeviceId() = interface IReturn member val PhoneNumber:String = null with get,set