Files
Complex/Complex.Application/Other/Common/Dto/IBaseResponseDto.cs
2026-06-02 20:48:16 +03:30

8 lines
136 B
C#

namespace Complex.Application.Common
{
public interface IBaseResponseDto
{
List<string> Action { set; get; }
}
}