' Options: 'Date: 2025-12-06 07:06:14 'Version: 8.80 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://backoffice-api.brovs.com ' '''GlobalNamespace: BackofficeApi '''MakePartial: True '''MakeVirtual: False '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: LotteryGetAllRequest.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports BackofficeApi Namespace Global Namespace BackofficeApi Public Partial Class LotteryGetAllRequest Implements IReturn(Of LotteryGetAllResponse) Implements IGet Public Property State As LotteryState? End Class Public Partial Class LotteryGetAllResponse Public Property Lotteries As List(Of LotteryListingDto) = New List(Of LotteryListingDto) End Class Public Partial Class LotteryListingDto Public Property Id As Long Public Property StartAt As DateTimeOffset Public Property StopAt As DateTimeOffset Public Property Title As String Public Property CountryCode As String Public Property State As TimeRelativeLotteryState End Class Public Enum TimeRelativeLotteryState Draft PublishedUpcoming PublishedActive PublishedEndedDrawWinner PublishedEndedContactWinner Archived End Enum Public Enum LotteryState Draft Published Archived End Enum End Namespace End Namespace