Files
DesignAndArchitectureOfSoft…/ApplicationSystem.MediatrHelper/Models/ResponseModel.cs
2025-06-08 23:24:45 +04:00

14 lines
468 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace ApplicationSystem.MediatRHelper.Models
{
/// <summary>
/// Модель результата выполнения запроса с возвращаемым значением
/// </summary>
public class ResponseModel<TResponse> : ResponseModel
{
/// <summary>
/// Результат успешного выполнения запроса
/// </summary>
public TResponse? Response { get; set; }
}
}