Files
server/src/Core/Models/Mail/BaseMailModel.cs

15 lines
291 B
C#
Raw Normal View History

2017-05-30 17:19:46 -04:00
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; }
}
}