/* Options: Date: 2025-01-08 03:10:43 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: GetAlbumResults.* //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; } = []; } public partial class GetAlbumResults : IReturn { public virtual List Ids { get; set; } public virtual List RefIds { get; set; } } public partial class GetAlbumResultsResponse { public virtual List Results { get; set; } = []; } }