Files
Hushian/Hushian.Domain/Entites/Company.cs

45 lines
1.4 KiB
C#
Raw Normal View History

2025-06-28 15:31:07 +03:30
using Hushian.Domain.Abstracts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hushian.Domain.Entites
{
public class Company : BaseEntity
{
#region Key
public int ID { get; set; }
#endregion
#region Fild
public DateTime Cdatetime
{ get; set; } = DateTime.Now;
public string Password { get; set; }
public string FullName { get; set; }
public string? FullNameManager { get; set; }
public string Mobile { get; set; }
public string? WebSite { get; set; }
public string? Email { get; set; }
2025-06-29 15:29:51 +03:30
public byte[]? logo { get; set; }
2025-06-28 15:31:07 +03:30
public bool Available { get; set; } = true;
public bool allowBot { get; set; } = true;
2025-07-03 16:05:44 +03:30
public bool Verified { get; set; } = false;
2025-06-28 15:31:07 +03:30
#endregion
#region Navigation
public ICollection<Group> Groups { get; set; }
= new List<Group>();
public ICollection<Exper> Expers { get; set; }
= new List<Exper>();
public ICollection<Conversation> Conversations { get; set; }
= new List<Conversation>();
public ICollection<CompanyContentInfo> CompanyContentInfos { get; set; }
= new List<CompanyContentInfo>();
2025-08-16 01:12:45 +03:30
public ICollection<Prompt> prompts { get; set; }
= new List<Prompt>();
2025-06-28 15:31:07 +03:30
#endregion
}
}