2026-09-06 15:50:40 +01:00
|
|
|
#nullable enable annotations
|
|
|
|
|
|
2024-12-14 20:21:41 +00:00
|
|
|
|
|
|
|
|
using Yavsc.Interfaces;
|
|
|
|
|
|
|
|
|
|
public class CommentPost : IComment<long>
|
|
|
|
|
{
|
|
|
|
|
public long ReceiverId { get; set; }
|
|
|
|
|
public long? ParentId { get; set; }
|
2026-02-22 23:39:56 +00:00
|
|
|
public string Article { get; set; }
|
2024-12-14 20:21:41 +00:00
|
|
|
}
|