43 lines
1004 B
C#
43 lines
1004 B
C#
using OpenAuth.Repository.Domain;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.App.ServiceApp.Request
|
|
{
|
|
public class OtherPersons
|
|
{
|
|
/// <summary>
|
|
/// Desc:姓名
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:联系方式
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Phone { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:照片
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Image { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:与本案关系
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string RelationShip { get; set; }
|
|
|
|
public List<MiOtherpersonImage> Images { get; set; }
|
|
}
|
|
}
|