mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
14 lines
322 B
C#
14 lines
322 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Remotely.Shared.ViewModels;
|
|
|
|
public class InviteViewModel
|
|
{
|
|
public string? ID { get; set; }
|
|
public bool IsAdmin { get; set; }
|
|
public DateTimeOffset DateSent { get; set; }
|
|
[EmailAddress]
|
|
public string? InvitedUser { get; set; }
|
|
}
|