sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Intranet/EventCommentDto.cs
2026-08-21 22:27:59 +03:00

15 lines
404 B
C#

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; }
}