Code cleanup

This commit is contained in:
quentin 2024-05-20 14:12:46 -05:00
parent d5642e4744
commit e5522ed559
4 changed files with 9 additions and 9 deletions

View File

@ -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)
{

View File

@ -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; }