mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 19:42:58 +00:00
31 lines
629 B
C#
31 lines
629 B
C#
using Esiur.Data;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Esiur.Security.Authority
|
|
{
|
|
public class Source
|
|
{
|
|
|
|
string id;
|
|
KeyList<SourceAttributeType, Structure> attributes;
|
|
|
|
string Id { get { return id; } }
|
|
|
|
KeyList<SourceAttributeType, Structure> Attributes
|
|
{
|
|
get { return attributes; }
|
|
}
|
|
|
|
public Source(string id, KeyList<SourceAttributeType, Structure> attributes)
|
|
{
|
|
this.id = id;
|
|
this.attributes = attributes;
|
|
}
|
|
|
|
}
|
|
}
|