You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
532 B
C#

using System;
namespace Haoliang.Models.Template
{
public class TagMapping
{
public int Id { get; set; }
public int TemplateId { get; set; }
public string SourceFieldPath { get; set; }
public string StandardFieldId { get; set; }
public string StandardFieldDesc { get; set; }
public string DataType { get; set; }
public ConversionRule ConversionRule { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
}
}