Browse Source
* Added an expiration date to the organization user invite email * Added a period * moved property assignment around * fixed date offsetpull/1470/head
9 changed files with 42 additions and 17 deletions
@ -0,0 +1,16 @@
@@ -0,0 +1,16 @@
|
||||
using System; |
||||
|
||||
namespace Bit.Core.Models.Business |
||||
{ |
||||
public class ExpiringToken |
||||
{ |
||||
public readonly string Token; |
||||
public readonly DateTime ExpirationDate; |
||||
|
||||
public ExpiringToken(string token, DateTime expirationDate) |
||||
{ |
||||
Token = token; |
||||
ExpirationDate = expirationDate; |
||||
} |
||||
} |
||||
} |
||||
Loading…
Reference in new issue