123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- namespace EVCB_OCPP.Domain.Models.Database
- {
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Data.Entity.Spatial;
- [Table("ApiLogEntry")]
- public class ApiLogEntry
- {
-
-
-
- [Key]
- public long ApiLogEntryId { get; set; }
-
-
-
- public string Application { get; set; }
-
-
-
- public string User { get; set; }
-
-
-
- public string Machine { get; set; }
-
-
-
- public string RequestIpAddress { get; set; }
-
-
-
- public string RequestContentType { get; set; }
-
-
-
- public string RequestContentBody { get; set; }
-
-
-
- public string RequestUri { get; set; }
-
-
-
- public string RequestMethod { get; set; }
-
-
-
- public string RequestRouteTemplate { get; set; }
-
-
-
- public string RequestRouteData { get; set; }
-
-
-
- public string RequestHeaders { get; set; }
-
-
-
- [Index("IX_RequestTimestamp", IsUnique = false)]
- public DateTime? RequestTimestamp { get; set; }
-
-
-
- public string ResponseContentType { get; set; }
-
-
-
- public string ResponseContentBody { get; set; }
-
-
-
- public int? ResponseStatusCode { get; set; }
-
-
-
- public string ResponseHeaders { get; set; }
-
-
-
- public DateTime? ResponseTimestamp { get; set; }
-
-
-
- public bool IsOutData { get; set; }
-
-
-
- public string ErrorMsg { get; set; }
-
-
-
- public DateTime? ErrorOn { get; set; }
- }
- }
|