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 { /// /// Desc:姓名 /// Default: /// Nullable:True /// public string Name { get; set; } /// /// Desc:联系方式 /// Default: /// Nullable:True /// public string Phone { get; set; } /// /// Desc:照片 /// Default: /// Nullable:True /// public string Image { get; set; } /// /// Desc:与本案关系 /// Default: /// Nullable:True /// public string RelationShip { get; set; } public List Images { get; set; } } }