sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Intranet/EventCommentDto.cs

16 lines
401 B
C#
Raw Normal View History

2026-05-07 14:25:06 +00:00
using System;
using Sozsoft.Platform.Identity.Dto;
namespace Sozsoft.Platform.Intranet;
public class EventCommentDto
{
public Guid Id { get; set; }
public Guid EventId { get; set; }
public Guid UserId { get; set; }
public UserInfoViewModel User { get; set; }
public string Content { get; set; }
public int Likes { get; set; }
public DateTime CreationTime { get; set; }
}