2025-07-28 17:41:14 +03:30
|
|
|
|
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; }
|
2025-07-30 16:39:37 +03:30
|
|
|
|
public int? UserID { get; set; }
|
2025-07-28 17:41:14 +03:30
|
|
|
|
public string Username { get; set; } = "";
|
|
|
|
|
public string Role { get; set; }= "";
|
|
|
|
|
}
|
|
|
|
|
}
|