24 lines
730 B
C#
24 lines
730 B
C#
|
|
using System;
|
|||
|
|
using Sozsoft.Platform.Identity.Dto;
|
|||
|
|
using Volo.Abp.Application.Dtos;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.Platform.Intranet;
|
|||
|
|
|
|||
|
|
public class AnnouncementDto : FullAuditedEntityDto<Guid>
|
|||
|
|
{
|
|||
|
|
public Guid? TenantId { get; set; }
|
|||
|
|
|
|||
|
|
public string Title { get; set; }
|
|||
|
|
public string Excerpt { get; set; }
|
|||
|
|
public string Content { get; set; }
|
|||
|
|
public string ImageUrl { get; set; }
|
|||
|
|
public string Category { get; set; }
|
|||
|
|
public Guid? UserId { get; set; }
|
|||
|
|
public UserInfoViewModel User { get; set; }
|
|||
|
|
public DateTime PublishDate { get; set; }
|
|||
|
|
public DateTime? ExpiryDate { get; set; }
|
|||
|
|
public bool IsPinned { get; set; }
|
|||
|
|
public int ViewCount { get; set; }
|
|||
|
|
public string Attachments { get; set; }
|
|||
|
|
}
|