feat: Add SwissQrBillDto and BadRequestException

- Add SwissQrBillDto, AddressDto, AlternativeSchemeDto for Codecrete Bill mapping
- Add BadRequestException to Domain exceptions
- DTOs include [Obsolete] warnings for deprecated fields (AddressLine1/2)
This commit is contained in:
2026-07-16 15:46:44 +02:00
parent 386a124a4e
commit 711f1a2660
2 changed files with 116 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace DocumentOperator.Domain.Common.Exceptions;
public class BadRequestException : Exception
{
public BadRequestException()
{
}
public BadRequestException(string? message) : base(message)
{
}
public BadRequestException(string? message, Exception? innerException) : base(message, innerException)
{
}
}