/* Options: Date: 2025-12-06 05:26:35 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.sbbet.ath.cx //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: GetUserNotifications.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Starnet.Common; using Betting.ReadModel; using Betting.Common; using Betting.WebApi.ServiceModel; namespace Betting.Common { public partial class Notification { public virtual Severity Severity { get; set; } public virtual NotificationType Type { get; set; } public virtual RecordDictionary Data { get; set; } } public enum NotificationType { Default = 0, SlipDeliveryConfirmationRequest = 1, SlipDeliveryIssueResolved = 2, } public enum Severity { Success = 0, Info = 1, Warning = 2, Error = 3, } } namespace Betting.ReadModel { public partial class UserNotifications { public virtual string Id { get; set; } public virtual int N { get; set; } public virtual int S { get; set; } public virtual int I { get; set; } public virtual int W { get; set; } public virtual int E { get; set; } public virtual Dictionary Notifications { get; set; } public partial class UserNotification { public virtual string Id { get; set; } public virtual Notification Notification { get; set; } public virtual DateTime DispatchedAt { get; set; } } } } namespace Betting.WebApi.ServiceModel { [Route("/qry/users/notifications")] public partial class GetUserNotifications : IReturn { public virtual string Id { get; set; } } } namespace Starnet.Common { public partial class RecordDictionary : Dictionary { } }