ISecurityToken.cs 221 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace InABox.Core
  5. {
  6. public interface ISecurityToken
  7. {
  8. string Descriptor { get; set; }
  9. bool Enabled { get; set; }
  10. }
  11. }