mirror of
https://github.com/bitwarden/server.git
synced 2025-05-22 20:11:04 -05:00

* [NO LOGIC] Organize Billing provider code * Run dotnet format * Run dotnet format' * Fixed using after merge * Fixed test usings after merge
17 lines
475 B
C#
17 lines
475 B
C#
using AutoMapper;
|
|
|
|
namespace Bit.Infrastructure.EntityFramework.Billing.Models;
|
|
|
|
public class ClientOrganizationMigrationRecord : Core.Billing.Providers.Entities.ClientOrganizationMigrationRecord
|
|
{
|
|
|
|
}
|
|
|
|
public class ClientOrganizationMigrationRecordProfile : Profile
|
|
{
|
|
public ClientOrganizationMigrationRecordProfile()
|
|
{
|
|
CreateMap<Core.Billing.Providers.Entities.ClientOrganizationMigrationRecord, ClientOrganizationMigrationRecord>().ReverseMap();
|
|
}
|
|
}
|