Remotely/Remotely_Library/Models/InviteLink.cs
Jared Goodwin 8debc4bad5 Initial
2021-07-29 07:53:41 -07:00

18 lines
468 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Remotely_Library.Models
{
public class InviteLink
{
[Key]
public string ID { get; set; } = Guid.NewGuid().ToString();
public string InvitedUser { get; set; }
public bool IsAdmin { get; set; }
public DateTime DateSent { get; set; }
public Organization Organization { get; set; }
}
}