/* Options:
Date: 2025-04-14 13:10:29
Version: 8.0
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://consumer-api.brovs.com

//GlobalNamespace: ConsumerApi
//MakePartial: True
//MakeVirtual: False
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: True
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion: 
//InitializeCollections: True
//ExportValueTypes: False
IncludeTypes: StarredAdMessageRequest.*
//ExcludeTypes: 
//AddNamespaces: 
//AddDefaultXmlNamespace: http://schemas.servicestack.net/types
*/

using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using ConsumerApi;

namespace ConsumerApi
{
    [Route("/admessage/StarredAdMessage", "POST")]
    public partial class StarredAdMessageRequest
        : IReturn<StarredAdMessageResponse>, IPost
    {
        public long AdMessageId { get; set; }
    }

    public partial class StarredAdMessageResponse
    {
        public long? StarredAdMessageId { get; set; }
    }

}