system-praktyk-api/src/InternshipSystem.Api/Security/User.cs
2020-08-29 17:25:48 +02:00

12 lines
229 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; }
}
}