/* Options: Date: 2025-01-08 03:10:54 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazordiffusion.com //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: GetCreativesInAlbums.* //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 BlazorDiffusion.ServiceModel; namespace BlazorDiffusion.ServiceModel { public partial class AlbumResult { public virtual int Id { get; set; } public virtual string Name { get; set; } public virtual string Slug { get; set; } public virtual string AlbumRef { get; set; } public virtual string OwnerRef { get; set; } public virtual int? PrimaryArtifactId { get; set; } public virtual int Score { get; set; } public virtual List ArtifactIds { get; set; } = []; } /// ///Retrieve Albums containing at least one of creative Artifacts /// public partial class GetCreativesInAlbums : IReturn, IGet { public virtual int CreativeId { get; set; } } public partial class GetCreativesInAlbumsResponse { public virtual List Results { get; set; } = []; } }