mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 19:00:07 +01:00
8 lines
141 B
C#
8 lines
141 B
C#
namespace QuotifyBE.DTOs;
|
|
|
|
public record class ErrorDTO
|
|
{
|
|
public string Status { get; set; }
|
|
public string error_msg { get; set; }
|
|
}
|