Skip to content
Snippets Groups Projects
Select Git revision
  • Sprint/2021-05
  • master default protected
  • gitkeep
  • dev protected
  • Issue/2309-docs
  • Issue/2259-updatePids
  • Issue/1321-pidEnquiryOverhaul
  • Hotfix/2087-efNet6
  • Issue/1910-MigrationtoNET6.0
  • Sprint/2022-01
  • Sprint/2021-23
  • Hotfix/82-updateDepsOfAPIs
  • Sprint/2021-11
  • Hotfix/1516-pidFix
  • Sprint/2021-08
  • Product/1188-LoggingExtended
  • Topic/1221-LogginExtendedNew
  • Hotfix/1370-swaggerDescription
  • Sprint/2021-04
  • Product/789-userContactEmail
  • v2.4.2
  • v2.4.1
  • v2.4.0
  • v2.3.2
  • v2.3.1
  • v2.3.0
  • v2.2.6
  • v2.2.5
  • v2.2.4
  • v2.2.3
  • v2.2.2
  • v2.2.1
  • v2.2.0
  • v2.1.0
  • v2.0.1
  • v2.0.0
  • v1.2.1
  • v1.2.0
  • v1.1.2
  • v1.1.1
40 results

GitVersion.yml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Log.cs 877 B
    using System;
    using System.Collections.Generic;
    
    // Code scaffolded by EF Core assumes nullable reference types (NRTs) are not used or disabled.
    // If you have enabled NRTs for your project, then un-comment the following line:
    // #nullable disable
    
    namespace Coscine.Database.DataModel
    {
        public partial class Log
        {
            public Guid Id { get; set; }
            public DateTime? ServerTimestamp { get; set; }
            public DateTime? ClientTimestamp { get; set; }
            public string LogLevel { get; set; }
            public string Message { get; set; }
            public string Stacktrace { get; set; }
            public Guid? UserId { get; set; }
            public string Uri { get; set; }
            public string Server { get; set; }
            public Guid? CorrolationId { get; set; }
            public string Status { get; set; }
            public string Source { get; set; }
        }
    }