abstract: enable nullable annotations in legacy files
All checks were successful
Dotnet build and test / build (pull_request) Successful in 10m16s

This commit is contained in:
Paul Schneider 2026-09-06 15:50:40 +01:00
commit 6a358d9f78
Signed by: notazof
GPG key ID: 1DD5D838E5343B06
22 changed files with 48 additions and 4 deletions

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using Yavsc.Services;
namespace Yavsc.Billing

View file

@ -1,3 +1,5 @@
#nullable enable annotations
namespace Yavsc.Blogspot;
/// <summary>

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using Yavsc.Abstract.Identity.Security;
using System.Text.Json.Serialization;

View file

@ -1,3 +1,5 @@
#nullable enable annotations

View file

@ -1,3 +1,5 @@
#nullable enable annotations
namespace Yavsc.Abstract.Chat
{
public static class ChatHubConstants

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using System.ComponentModel.DataAnnotations;
namespace Yavsc.Abstract.Chat

View file

@ -1,4 +1,6 @@
using System.Text;
#nullable enable annotations
using System.Text;
using Yavsc.ViewModels.UserFiles;
namespace Yavsc.Server.Helpers

View file

@ -1,3 +1,5 @@
#nullable enable annotations
namespace Yavsc.Abstract.Helpers
{
public enum ErrorCode {

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using Yavsc.Server.Helpers;
namespace Yavsc.ViewModels.UserFiles

View file

@ -1,3 +1,5 @@
#nullable enable annotations
//
// GDate.cs
//

View file

@ -1,3 +1,5 @@
#nullable enable annotations
//
// MessageWithPayloadResponse.cs
//

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Yavsc.Attributes.Validation;

View file

@ -1,4 +1,6 @@
namespace Yavsc.Abstract.Identity
#nullable enable annotations
namespace Yavsc.Abstract.Identity
{
public interface IApplicationUser
{

View file

@ -1,3 +1,5 @@
#nullable enable annotations
namespace Yavsc.Abstract.Identity
{
/// <summary>

View file

@ -1,4 +1,6 @@
using Yavsc.Abstract.Identity;
#nullable enable annotations
using Yavsc.Abstract.Identity;
namespace Yavsc.Interfaces
{

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using Yavsc.Interfaces;

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

View file

@ -1,3 +1,5 @@
#nullable enable annotations
//
// BookQueryEvent.cs
//

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using Yavsc.Abstract.Identity;
using Yavsc.Models.Relationship;

View file

@ -1,4 +1,6 @@
// Copyright (C) 2016 Paul Schneider
#nullable enable annotations
// Copyright (C) 2016 Paul Schneider
//
// This file is part of yavsc.
//

View file

@ -1,3 +1,5 @@
#nullable enable annotations
namespace Yavsc.Workflow
{
public interface IPerformerProfile

View file

@ -1,3 +1,5 @@
#nullable enable annotations
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;