aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Models/Misc/LoggedInUserModel.cs
blob: 49d05d483d8cf7184037b63d2c32100f801e384f (plain) (blame)
1
2
3
4
5
6
7
8
namespace IOL.GreatOffice.Api.Models.Misc;

public class LoggedInUserModel
{
    public Guid Id { get; set; }
    public string Username { get; set; }
    public Guid TenantId { get; set; }
}