mirror of
https://github.com/bitwarden/server.git
synced 2026-02-08 01:43:15 +08:00
10 lines
232 B
C#
10 lines
232 B
C#
|
|
namespace Bit.Core.Models.Mail;
|
|||
|
|
|
|||
|
|
public class BaseTitleContactUsMailModel : BaseMailModel
|
|||
|
|
{
|
|||
|
|
public string TitleFirst { get; set; }
|
|||
|
|
public string TitleSecondBold { get; set; }
|
|||
|
|
public string TitleThird { get; set; }
|
|||
|
|
}
|
|||
|
|
|