CodeMaid vari

This commit is contained in:
Samuele Locatelli
2023-03-02 08:46:06 +01:00
parent 583aaf0be4
commit f3d7ae055d
6 changed files with 1045 additions and 1028 deletions
@@ -1,5 +1,4 @@
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Authorization;
using Microsoft.JSInterop;
using StockMan.Data.DbModels;
@@ -34,7 +33,6 @@ namespace StockMan.CORE.Components
#region Protected Properties
protected int currChildOpen { get; set; } = 0;
[Inject]
@@ -119,7 +117,6 @@ namespace StockMan.CORE.Components
return answ;
}
#endregion Protected Methods
}
}
+7 -3
View File
@@ -2,10 +2,14 @@
{
public class LinkMan
{
public string Title { get; set; } = "Link";
#region Public Properties
public string Css { get; set; } = "";
public string Icon { get; set; } = "";
public bool hasChildren { get; set; } = false;
public string Icon { get; set; } = "";
public List<string> linkChildren { get; set; } = new List<string>();
public string Title { get; set; } = "Link";
#endregion Public Properties
}
}
}
File diff suppressed because it is too large Load Diff
+3 -5
View File
@@ -1,14 +1,12 @@
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Web;
using Blazored.LocalStorage;
using Blazored.SessionStorage;
using Microsoft.AspNetCore.Authentication.Negotiate;
using Microsoft.AspNetCore.Identity.UI.Services;
using Microsoft.AspNetCore.Localization;
using StackExchange.Redis;
using StockMan.CORE.Data;
using StockMan.Data;
using System.Globalization;
using Blazored.LocalStorage;
using Blazored.SessionStorage;
using Microsoft.AspNetCore.Authentication.Negotiate;
var builder = WebApplication.CreateBuilder(args);
+1 -1
View File
@@ -25,4 +25,4 @@
}
}
}
}
}
File diff suppressed because it is too large Load Diff