mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-06-27 05:23:13 +00:00
Add project files.
This commit is contained in:
30
Esiur/Security/Authority/Source.cs
Normal file
30
Esiur/Security/Authority/Source.cs
Normal file
@ -0,0 +1,30 @@
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user