This commit is contained in:
mmrbnjd
2025-07-28 17:41:14 +03:30
parent 43b6e4e746
commit ea152671d6
13 changed files with 691 additions and 12 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Dtos
{
public class CurrentUserInfo
{
public int CompanyID { get; set; }= 0;
public int? ExperID { get; set; }
public string Username { get; set; } = "";
public string Role { get; set; }= "";
}
}