| 123456789101112131415161718 |
- using Karsha_Site.Domain.Entities.Commons;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace Karsha_Site.Domain.Entities.Comments
- {
- public class Comment : BaseEntity
- {
- public string CommentText { get; set; }
- public string FullName { get; set; }
- public string Subject { get; set; }
- public int Tel { get; set; }
- public bool Email { get; set; }
- }
- }
|