28 lines
888 B
C#
28 lines
888 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Canvass
|
|
{
|
|
public class ForCanvassFollowUp
|
|
{
|
|
[Key]
|
|
public long CanvassSupplierId { get; set; }
|
|
public string? Subject { get; set; }
|
|
public string? SenderEmail { get; set; }
|
|
public string? EmailAddress { get; set; }
|
|
public string? FormLink { get; set; }
|
|
public string? DisplayName { get; set; }
|
|
public string? CC { get; set; }
|
|
public string? Password { get; set; }
|
|
public string? Token { get; set; }
|
|
public string? Server { get; set; }
|
|
public string? UserName { get; set; }
|
|
public string? SupplierName { get; set; }
|
|
public string? Signature { get; set; }
|
|
}
|
|
}
|