Files
meezi/src/Meezi.Core/Entities/CafeReview.cs
T

17 lines
554 B
C#
Raw Normal View History

2026-05-27 21:33:48 +03:30
namespace Meezi.Core.Entities;
public class CafeReview : BaseEntity
{
public string CafeId { get; set; } = string.Empty;
public string AuthorName { get; set; } = string.Empty;
public string? AuthorPhone { get; set; }
public int Rating { get; set; }
public string? Comment { get; set; }
public string? OwnerReply { get; set; }
public DateTime? OwnerRepliedAt { get; set; }
public bool IsHidden { get; set; }
public Cafe Cafe { get; set; } = null!;
public ICollection<CafeReviewPhoto> Photos { get; set; } = [];
}