16 lines
401 B
C#
16 lines
401 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; }
|
||
|
|
}
|