/* Options:
Date: 2025-10-31 06:51:36
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: AddStatistic.*
//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.Statistics.Operations;
namespace IDB.API.DTO.Statistics.Operations
{
    public enum Action
    {
        Start,
        Command,
        Other,
    }
    ///
    ///Add a statistic entity.
    ///
    [Route("/statistics", "POST")]
    [Api(Description="Add a statistic entity.")]
    public partial class AddStatistic
        : IReturnVoid
    {
        ///
        ///Computername
        ///
        [ApiMember(Description="Computername", IsRequired=true)]
        public virtual string Computer { get; set; }
        ///
        ///Program for the statistic entry
        ///
        [ApiMember(Description="Program for the statistic entry", IsRequired=true)]
        public virtual ProgramName ProgramName { get; set; }
        ///
        ///Version of the program
        ///
        [ApiMember(Description="Version of the program")]
        public virtual string ProgramVersion { get; set; }
        ///
        ///Action of statistic
        ///
        [ApiMember(Description="Action of statistic", IsRequired=true)]
        public virtual Action Action { get; set; }
        ///
        ///First parameter
        ///
        [ApiMember(Description="First parameter", IsRequired=true)]
        public virtual string Param1 { get; set; }
        ///
        ///Second parameter
        ///
        [ApiMember(Description="Second parameter")]
        public virtual string Param2 { get; set; }
    }
    public enum ProgramName
    {
        DO4Outlook,
        DO4Word,
        DO4Excel,
        DO4PowerPoint,
        ITS,
        Other,
    }
}