Code cleanup
This commit is contained in:
parent
d5642e4744
commit
e5522ed559
@ -12,7 +12,7 @@
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.1"/>
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0-preview.3.24172.4"/>
|
||||
<PackageReference Include="Serilog.AspNetCore" Version="8.0.2-dev-00338" />
|
||||
<PackageReference Include="Serilog.AspNetCore" Version="8.0.2-dev-00338"/>
|
||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0"/>
|
||||
</ItemGroup>
|
||||
|
||||
|
@ -18,8 +18,8 @@ namespace API.Controllers
|
||||
where TService : ServiceBase<TService, TDTO, TModel, TAuditModel, TAuthentication>
|
||||
{
|
||||
public readonly ILogger<TLoggerCategory> Logger;
|
||||
public readonly UserService UserService;
|
||||
public readonly TService Service;
|
||||
public readonly UserService UserService;
|
||||
|
||||
public CRUDBase(ILogger<TLoggerCategory> logger, UserService userService, TService service)
|
||||
{
|
||||
|
@ -9,7 +9,7 @@ namespace API.DTO.Base
|
||||
public ulong savedEventId { get; set; }
|
||||
|
||||
[MaxLength(64)]
|
||||
public string? name { get; set; } = null!;
|
||||
public string? name { get; set; }
|
||||
|
||||
public ulong? bgColorId { get; set; }
|
||||
public ulong? fgColorId { get; set; }
|
||||
|
@ -7,12 +7,12 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0-preview.3.24172.4" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0-preview.3.24172.4"/>
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.0-preview.3.24172.4">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="MySql.EntityFrameworkCore" Version="8.0.0" />
|
||||
<PackageReference Include="MySql.EntityFrameworkCore" Version="8.0.0"/>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
Loading…
x
Reference in New Issue
Block a user