18 lines
468 B
C#
18 lines
468 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AGSS.Models.DTOs
|
|
{
|
|
public class DictionaryDto
|
|
{
|
|
public string Uuid { get; set; }
|
|
public string ParentId { get; set; }
|
|
public string ParentValue { get; set; }
|
|
public string Label { get; set; }
|
|
public string LabelEn { get; set; }
|
|
public string Remark { get; set; }
|
|
public string Value { get; set; }
|
|
public string Tag { get; set; }
|
|
}
|
|
}
|