This commit is contained in:
mmrbnjd
2024-06-09 10:03:30 +03:30
parent 39dbbf03d8
commit ae0936fea8
5 changed files with 120 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class CheckAuthDTO
{
public string UniqueMemory { get; set; }
public string PrivateKey { get; set; }
}
}