2024-04-18 01:44:37 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using SQLite;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Wino.Core.Domain.Entities
|
|
|
|
|
|
{
|
|
|
|
|
|
public class AccountSignature
|
|
|
|
|
|
{
|
|
|
|
|
|
[PrimaryKey]
|
|
|
|
|
|
public Guid Id { get; set; }
|
|
|
|
|
|
|
2024-06-13 00:51:59 +02:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
2024-04-18 01:44:37 +02:00
|
|
|
|
public string HtmlBody { get; set; }
|
2024-06-13 00:51:59 +02:00
|
|
|
|
|
|
|
|
|
|
public Guid MailAccountId { get; set; }
|
2024-04-18 01:44:37 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|