| | | 1 | | using MUNity.Base; |
| | | 2 | | using System; |
| | | 3 | | using System.Collections.Generic; |
| | | 4 | | using System.Text; |
| | | 5 | | |
| | | 6 | | namespace MUNity.Schema.User |
| | | 7 | | { |
| | | 8 | | /// <summary> |
| | | 9 | | /// The auth Schema of a MUNity User. |
| | | 10 | | /// </summary> |
| | | 11 | | public class UserAuthSchema |
| | | 12 | | { |
| | | 13 | | |
| | | 14 | | |
| | | 15 | | /// <summary> |
| | | 16 | | /// The AuthId |
| | | 17 | | /// </summary> |
| | 0 | 18 | | public int UserAuthId { get; set; } |
| | | 19 | | |
| | | 20 | | /// <summary> |
| | | 21 | | /// The name of the auth. |
| | | 22 | | /// </summary> |
| | 0 | 23 | | public string UserAuthName { get; set; } |
| | | 24 | | |
| | | 25 | | /// <summary> |
| | | 26 | | /// Can this user Auth create an Organization. |
| | | 27 | | /// </summary> |
| | 0 | 28 | | public bool CanCreateOrganization { get; set; } |
| | | 29 | | |
| | | 30 | | /// <summary> |
| | | 31 | | /// The auth level. |
| | | 32 | | /// </summary> |
| | 0 | 33 | | public EAuthLevel AuthLevel { get; set; } |
| | | 34 | | } |
| | | 35 | | } |