Files
2023-03-13 15:00:34 +08:00

21 lines
468 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace JNPF.Systems.Entitys.Dto.Permission.UsersCurrent
{
public class UsersCurrentSignImgOutput
{
/// <summary>
/// 主键.
/// </summary>
public string id { get; set; }
/// <summary>
/// 签名.
/// </summary>
public string signImg { get; set; }
/// <summary>
/// 是否默认(0:否1是).
/// </summary>
public int? isDefault { get; set; }
}
}