Skip to content
Snippets Groups Projects
Commit 3d8b6be8 authored by Marcel Nellesen's avatar Marcel Nellesen
Browse files

Merge branch 'Product/1149-dfnaai' into 'Sprint/2021-01'

Product/1149 dfnaai

See merge request !111
parents ff533479 9eaa4134
No related branches found
No related tags found
2 merge requests!111Product/1149 dfnaai,!110Sprint/2021 01
......@@ -221,6 +221,7 @@
<Compile Include="Models\LogModel.cs" />
<Compile Include="ReturnObjects\DisciplineObject.cs" />
<Compile Include="ReturnObjects\ExternalAuthenticatorsObject.cs" />
<Compile Include="ReturnObjects\ExternalIdsObject.cs" />
<Compile Include="ReturnObjects\FeatureObject.cs" />
<Compile Include="ReturnObjects\GitlabResourceTypeObject.cs" />
<Compile Include="ReturnObjects\IReturnObject.cs" />
......
using System;
namespace Coscine.Database.ReturnObjects
{
[Serializable]
public class ExternalIdsObject : IReturnObject
{
public Guid Id { get; set; }
public Guid UserId { get; set; }
public Guid ExternalAuthenticatorId { get; set; }
public string Organization { get; set; }
public string ExternalId { get; set; }
public ExternalIdsObject(Guid id, Guid userId, Guid externalAuthenticatorId, string organization, string externalId)
{
Id = id;
UserId = userId;
ExternalAuthenticatorId = externalAuthenticatorId;
Organization = organization;
ExternalId = externalId;
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment