mirror of
https://github.com/sphildreth/roadie
synced 2024-11-22 20:23:16 +00:00
20 lines
498 B
C#
20 lines
498 B
C#
using Roadie.Library.Identity;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Roadie.Library.Data
|
|
{
|
|
[Table("inviteToken")]
|
|
public class InviteToken : EntityBase
|
|
{
|
|
[Column("createdByUserId")]
|
|
public int CreatedByUserId { get; set; }
|
|
|
|
[Column("expiresDate")]
|
|
public DateTime? ExpiresDate { get; set; }
|
|
|
|
[NotMapped]
|
|
public new bool IsLocked { get; set; }
|
|
}
|
|
}
|