mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 19:00:07 +01:00
10 lines
218 B
C#
10 lines
218 B
C#
namespace QuotifyBE.DTOs;
|
|
|
|
public record class SuccessfulLoginDTO
|
|
{
|
|
required public string Status { get; set; }
|
|
required public string Token { get; set; }
|
|
required public UserInfoDTO User { get; set; }
|
|
|
|
};
|