fengling-console/Models/Dtos/TenantDto.cs
movingsam 4d2127637d refactor: clean up Member module and update Console
- Remove redundant PointsRule repositories (use single PointsRuleRepository)
- Clean up Member migrations and consolidate to single Init migration
- Update Console frontend API and components for Tenant
- Add H5LinkService for member H5 integration
2026-02-18 23:34:40 +08:00

24 lines
855 B
C#

using Fengling.Platform.Domain.AggregatesModel.TenantAggregate;
namespace Fengling.Console.Models.Dtos;
public class TenantDto
{
public long Id { get; set; }
public string TenantCode { get; set; } = "";
public string Name { get; set; } = "";
public string ContactName { get; set; } = "";
public string ContactEmail { get; set; } = "";
public string? ContactPhone { get; set; }
public int? MaxUsers { get; set; }
public int UserCount { get; set; }
public TenantStatus Status { get; set; } = TenantStatus.Active;
public DateTime? ExpiresAt { get; set; }
public string? Description { get; set; }
public DateTime CreatedAt { get; set; }
public string? CustomDomain { get; set; }
public string? BasePath { get; set; }
public string? Logo { get; set; }
public string? H5BaseUrl { get; set; }
}