19 lines
465 B
C#
19 lines
465 B
C#
using Core.Abstractions.DomainObjects;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Core.DomainObjects {
|
|
public class Comment : DomainObjectBase<Comment> {
|
|
public Author Author { get; set; }
|
|
public string Text { get; set; }
|
|
public List<Comment>? Responses { get; set; }
|
|
|
|
public override int GetHashCode() {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|