Remotely/Shared/ViewModels/InviteViewModel.cs
2024-10-21 11:53:41 -07:00

13 lines
308 B
C#

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; }
}