48 lines
1.1 KiB
C#
48 lines
1.1 KiB
C#
namespace AdminService.Domain.Entities;
|
|
|
|
public class CompanySubsidiary
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int CompanyId { get; set; }
|
|
|
|
public string SubsidiaryCode { get; set; } = string.Empty;
|
|
|
|
public string SubsidiaryName { get; set; } = string.Empty;
|
|
|
|
public string? PlotOfficeBuilding { get; set; }
|
|
|
|
public string? StreetRoad { get; set; }
|
|
|
|
public string? Locality { get; set; }
|
|
|
|
public int? CityId { get; set; }
|
|
|
|
public string? PinCode { get; set; }
|
|
|
|
public string? EmailId { get; set; }
|
|
|
|
public string? ContactNo { get; set; }
|
|
|
|
public string? ContactPerson { get; set; }
|
|
|
|
public string? PanNo { get; set; }
|
|
|
|
public string? CinNo { get; set; }
|
|
|
|
public string? MsmeNo { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public long CreatedBy { get; set; }
|
|
|
|
public DateTime UpdatedAt { get; set; }
|
|
|
|
public long UpdatedBy { get; set; }
|
|
|
|
public bool Active { get; set; }
|
|
|
|
public string CreatedUser { get; set; } = string.Empty;
|
|
|
|
public string UpdatedUser { get; set; } = string.Empty;
|
|
} |