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.
20 lines
608 B
C#
20 lines
608 B
C#
namespace Haoliang.Models.Template
|
|
{
|
|
public class TagTemplate
|
|
{
|
|
public int TemplateId { get; set; }
|
|
public string SystemTagId { get; set; }
|
|
public string DeviceTagPattern { get; set; }
|
|
public string DataType { get; set; }
|
|
public string ConversionRule { get; set; }
|
|
public bool IsRequired { get; set; }
|
|
public string Description { get; set; }
|
|
}
|
|
|
|
public class TemplateConfiguration
|
|
{
|
|
public int ConfigurationId { get; set; }
|
|
public int TemplateId { get; set; }
|
|
public string Configuration { get; set; }
|
|
}
|
|
} |