using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Core;
///
/// 家属类型
///
public enum FramilyRoleEnum
{
///
/// 爸爸
///
[Description("爸爸")]
Father = 0,
///
/// 妈妈
///
[Description("妈妈")]
Mother = 1,
///
/// 其他亲属
///
[Description("其他亲属")]
Other = 2
}