30 lines
631 B
C#
30 lines
631 B
C#
using System;
|
|
|
|
namespace Hg.Core.Domain.Dto.Meeting
|
|
{
|
|
public class EditMeetingAccessoryDto
|
|
{
|
|
public EditMeetingAccessoryDto()
|
|
{
|
|
}
|
|
|
|
public string? Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 附件
|
|
/// </summary>
|
|
public string? Accessories { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public List<AccessoryDto>? AccessoryList
|
|
{
|
|
get
|
|
{
|
|
return string.IsNullOrEmpty(Accessories) ? new List<AccessoryDto>() :
|
|
JsonSerializer.Deserialize<List<AccessoryDto>>(Accessories);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|