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