You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DeleteCustomerRequest.cs 261B

123456789101112
  1. using System.Diagnostics.CodeAnalysis;
  2. namespace Diligent.WebAPI.Business.HelperModels
  3. {
  4. [ExcludeFromCodeCoverage]
  5. public class DeleteCustomerRequest
  6. {
  7. public string? Id { get; set; }
  8. public bool IsSuccess { get; set; }
  9. }
  10. }