mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
18 lines
493 B
C#
18 lines
493 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().Replace("-", "");
|
|
public string InvitedUser { get; set; }
|
|
public bool IsAdmin { get; set; }
|
|
public DateTime DateSent { get; set; }
|
|
public virtual Organization Organization { get; set; }
|
|
}
|
|
}
|