Added new tool configuration: customizable tools types
This commit is contained in:
@@ -27,6 +27,8 @@ namespace Step.Model.ConfigModels
|
||||
public CooligTranslations CooligsTranslations { get; set; }
|
||||
|
||||
public List<MagazineNamesModel> MagazineNames { get; set; }
|
||||
|
||||
public List<ToolTypeConfigModel> ToolTypes { get; set; }
|
||||
}
|
||||
|
||||
public class CooligTranslations
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Step.Model.ConfigModels
|
||||
{
|
||||
public class ToolTypeConfigModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public bool Disabled { get; set; }
|
||||
|
||||
public Dictionary<string, string> LocalizedNames { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user