/* Options: Date: 2025-07-04 09:43:50 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //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: GetEntityIdentifier.* //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 System.Drawing; using IDB.API.DTO.General.Operations; using IDB.API.DTO.General; namespace IDB.API.DTO.General { public partial class CommonEntityIdentifier { public virtual string ID { get; set; } public virtual string DisplayName { get; set; } public virtual string EntityName { get; set; } } } namespace IDB.API.DTO.General.Operations { /// ///Returns the identifier information of an entity. /// [Route("/entities/{EntityName}/{EntityID}", "GET")] [Api(Description="Returns the identifier information of an entity.")] public partial class GetEntityIdentifier : IReturn { /// ///ID of the entity /// [ApiMember(Description="ID of the entity", IsRequired=true)] public virtual string EntityID { get; set; } /// ///Name of the entity /// [ApiMember(Description="Name of the entity", IsRequired=true)] public virtual string EntityName { get; set; } } }