12 lines
398 B
C#
12 lines
398 B
C#
namespace ListmonkIntegration.Models
|
|
{
|
|
public class Subscriber
|
|
{
|
|
public string Email { get; set; } = string.Empty;
|
|
public string FullName { get; set; } = string.Empty;
|
|
public string Login { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
public Dictionary<string, string> Attributes { get; set; } = new();
|
|
}
|
|
}
|