LoggingEvent.cs 174 B

123456
  1. using System.ComponentModel;
  2. namespace PCC.Common.Logging;
  3. [DisplayName("打日志")]
  4. public record LoggingEvent(LogLevel LogLevel, string CategoryName, string Content);