1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 08:02:49 -05:00

new uri settings

This commit is contained in:
Kyle Spearrin
2017-08-03 23:12:05 -04:00
parent 5deccf122a
commit ee9d8a074d
16 changed files with 92 additions and 80 deletions

View File

@ -1,14 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Bit.Core.Models.Mail
namespace Bit.Core.Models.Mail
{
public class BaseMailModel
{
private string _webVaultUrl;
public string SiteName { get; set; }
public string WebVaultUrl { get; set; }
public string WebVaultUrl
{
get
{
return _webVaultUrl;
}
set
{
_webVaultUrl = string.Concat(value, "/#");
}
}
}
}