2025-06-28 15:31:07 +03:30
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Common.Dtos.Company
|
|
|
|
|
{
|
|
|
|
|
public class ReadANDUpdate_CompanyDto
|
|
|
|
|
{
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
public string FullName { get; set; }
|
|
|
|
|
public string? FullNameManager { get; set; }
|
|
|
|
|
public string? WebSite { get; set; }
|
|
|
|
|
public string? Email { get; set; }
|
2025-07-03 16:05:44 +03:30
|
|
|
|
public byte[]? logo { get; set; }
|
2025-06-28 15:31:07 +03:30
|
|
|
|
public bool Available { get; set; }
|
|
|
|
|
public bool allowBot { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|