/* Options:
Date: 2026-02-04 10:26:05
Version: 6.110
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://etc-api.vsmlab.vn
//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: True
//ExportValueTypes: False
IncludeTypes: GetAccountSignatures.*
//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 ServiceStack.Web;
using System.IO;
using tvpl.api.ServiceModel;
using tvpl.data.Models;
namespace tvpl.api.ServiceModel
{
///
///Get all Account Signatures for current user
///
[Route("/account-signature/list", "GET")]
public partial class GetAccountSignatures
: IReturn, IGet
{
}
public partial class GetAccountSignaturesResponse
: IResponseRequest
{
public GetAccountSignaturesResponse()
{
Data = new List{};
}
public virtual List Data { get; set; }
public virtual int Code { get; set; }
public virtual string Message { get; set; }
}
public partial interface IResponseRequest
{
int Code { get; set; }
string Message { get; set; }
}
}
namespace tvpl.data.Models
{
public partial class AccountSignature
{
public virtual int Id { get; set; }
public virtual int AccountId { get; set; }
[StringLength(50)]
public virtual string Provider { get; set; }
[StringLength(200)]
public virtual string SerialNumber { get; set; }
[StringLength(255)]
public virtual string DisplayName { get; set; }
public virtual bool IsDefault { get; set; }
public virtual bool IsDeleted { get; set; }
public virtual DateTime CreatedAt { get; set; }
public virtual DateTime? UpdatedAt { get; set; }
}
}