From 370659185af61d72a68c1e24ef4ce0e4f2c69107 Mon Sep 17 00:00:00 2001 From: Daniel Gyulai Date: Thu, 12 Nov 2020 09:49:07 +0100 Subject: [PATCH] Fix AuthController mock user types --- CoviDok/BLL/User/Auth.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 CoviDok/BLL/User/Auth.cs diff --git a/CoviDok/BLL/User/Auth.cs b/CoviDok/BLL/User/Auth.cs new file mode 100644 index 0000000..ad0ec31 --- /dev/null +++ b/CoviDok/BLL/User/Auth.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace CoviDok.BLL.User +{ + public class Auth + { + } +}