//-----------------------------------------------------------------------
//
// Copyright (c) lanedirt. All rights reserved.
// Licensed under the AGPLv3 license. See LICENSE.md file in the project root for full license information.
//
//-----------------------------------------------------------------------
namespace AliasVault.Admin.Main.Models;
///
/// User email claim view model with count.
///
public class UserEmailClaimWithCount
{
///
/// Gets or sets the id.
///
public Guid Id { get; set; }
///
/// Gets or sets the address.
///
public string Address { get; set; } = string.Empty;
///
/// Gets or sets the address local.
///
public string AddressLocal { get; set; } = string.Empty;
///
/// Gets or sets the address domain.
///
public string AddressDomain { get; set; } = string.Empty;
///
/// Gets or sets a value indicating whether the email claim is disabled.
///
public bool Disabled { get; set; }
///
/// Gets or sets the created at timestamp.
///
public DateTime CreatedAt { get; set; }
///
/// Gets or sets the updated at timestamp.
///
public DateTime UpdatedAt { get; set; }
///
/// Gets or sets the email count.
///
public int EmailCount { get; set; }
}