system-praktyk-api/src/InternshipSystem.Api/Security/User.cs
2020-08-31 18:13:30 +02:00

11 lines
228 B
C#

using System;
namespace InternshipSystem.Api.Security
{
public class User
{
public long PersonNumber { get; set; }
public string Name { get; set; }
public Guid? EditionId { get; set; }
}
}