/* Options: Date: 2025-07-04 09:13:02 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: GetDocumentComments.* //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.Interfaces; using IDB.API.DTO.Document; using IDB.API.DTO.Document.Operations; namespace IDB.API.DTO.Document { public partial class DocumentComment : IComment { public virtual int ID { get; set; } public virtual Guid DocumentID { get; set; } public virtual int UserID { get; set; } public virtual string Username { get; set; } public virtual string Text { get; set; } public virtual DateTime Date { get; set; } public virtual bool IsMine { get; set; } } } namespace IDB.API.DTO.Document.Operations { public partial class GetDocumentComments : IReturn> { public virtual Guid ID { get; set; } } } namespace IDB.API.DTO.Interfaces { public partial interface IComment { string Text { get; set; } DateTime Date { get; set; } string Username { get; set; } bool IsMine { get; set; } } }