Lots of additions and changes

This commit is contained in:
2021-10-30 11:20:36 -04:00
parent 3051b63e44
commit 9cf11e982f
29 changed files with 557 additions and 46 deletions

View File

@@ -11,4 +11,17 @@ namespace TOOHUCardAPI.DTO
[JsonProperty("msg")]
public string Message { get; set; } = string.Empty;
}
public class InvalidUserResponse : AbstractResponse
{
public InvalidUserResponse()
{
Code = "0001";
Message = "Invalid user";
}
}
public class OkResponse : AbstractResponse
{
}
}