mirror of
https://github.com/bitwarden/server.git
synced 2026-02-05 16:43:14 +08:00
15 lines
291 B
C#
15 lines
291 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.Mail
|
|||
|
|
{
|
|||
|
|
public class BaseMailModel
|
|||
|
|
{
|
|||
|
|
public string SiteName { get; set; }
|
|||
|
|
public string WebVaultUrl { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|