forked from LeanKit/LeanKit.API.Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAuth.cs
More file actions
29 lines (26 loc) · 663 Bytes
/
Auth.cs
File metadata and controls
29 lines (26 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
namespace LeanKit.Models
{
public class TokenList
{
public TokenList()
{
Tokens = new List<TokenListResponse>();
}
public List<TokenListResponse> Tokens { get; set; }
}
public class TokenListResponse
{
public long Id { get; set; }
public string Description { get; set; }
public DateTime CreatedOn { get; set; }
}
public class TokenCreateResponse
{
public long Id { get; set; }
public string Token { get; set; }
public string Description { get; set; }
public DateTime CreatedOn { get; set; }
}
}