add subjects fix normal student login Co-authored-by: MaxchilKH <m.w.bohdanowicz@gmail.com>
20 lines
625 B
C#
20 lines
625 B
C#
using System.Collections.Generic;
|
|
using InternshipSystem.Api.Converters;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace InternshipSystem.Api.Controllers
|
|
{
|
|
public class CasUserData
|
|
{
|
|
public string AlbumNumber { get; set; }
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
|
|
[JsonConverter(typeof(StringArrayConverter<string>))]
|
|
public List<string> Mail { get; set; }
|
|
public string PersonNumber { get; set; }
|
|
|
|
[JsonConverter(typeof(StringArrayConverter<string>))]
|
|
public List<string> Pg_Cui_Portalroles { get; set; }
|
|
}
|
|
} |