GIT: perform LF normalization
This commit is contained in:
@@ -1,29 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using Disco.Services.Logging;
|
||||
using System.Web.WebPages.Html;
|
||||
|
||||
namespace Disco.Web.Areas.API.Models.Logs
|
||||
{
|
||||
public class LogModuleModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Description { get; set; }
|
||||
|
||||
public List<LogEventTypeModel> EventTypes { get; set; }
|
||||
|
||||
public static LogModuleModel FromLogModule(LogBase LogModule)
|
||||
{
|
||||
return new LogModuleModel()
|
||||
{
|
||||
Id = LogModule.ModuleId,
|
||||
Name = LogModule.ModuleName,
|
||||
Description = LogModule.ModuleDescription,
|
||||
EventTypes = LogModule.EventTypes.Values.Select(et => LogEventTypeModel.FromLogEventType(et)).ToList()
|
||||
};
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using Disco.Services.Logging;
|
||||
using System.Web.WebPages.Html;
|
||||
|
||||
namespace Disco.Web.Areas.API.Models.Logs
|
||||
{
|
||||
public class LogModuleModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Description { get; set; }
|
||||
|
||||
public List<LogEventTypeModel> EventTypes { get; set; }
|
||||
|
||||
public static LogModuleModel FromLogModule(LogBase LogModule)
|
||||
{
|
||||
return new LogModuleModel()
|
||||
{
|
||||
Id = LogModule.ModuleId,
|
||||
Name = LogModule.ModuleName,
|
||||
Description = LogModule.ModuleDescription,
|
||||
EventTypes = LogModule.EventTypes.Values.Select(et => LogEventTypeModel.FromLogEventType(et)).ToList()
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user