CodeMaid vari
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
@@ -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
@@ -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);
|
||||
|
||||
|
||||
@@ -25,4 +25,4 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user