mirror of
https://github.com/bitwarden/server
synced 2025-12-24 20:23:21 +00:00
Turn on file scoped namespaces (#2225)
This commit is contained in:
@@ -1,17 +1,16 @@
|
||||
using AutoMapper;
|
||||
|
||||
namespace Bit.Infrastructure.EntityFramework.Models
|
||||
{
|
||||
public class SsoConfig : Core.Entities.SsoConfig
|
||||
{
|
||||
public virtual Organization Organization { get; set; }
|
||||
}
|
||||
namespace Bit.Infrastructure.EntityFramework.Models;
|
||||
|
||||
public class SsoConfigMapperProfile : Profile
|
||||
public class SsoConfig : Core.Entities.SsoConfig
|
||||
{
|
||||
public virtual Organization Organization { get; set; }
|
||||
}
|
||||
|
||||
public class SsoConfigMapperProfile : Profile
|
||||
{
|
||||
public SsoConfigMapperProfile()
|
||||
{
|
||||
public SsoConfigMapperProfile()
|
||||
{
|
||||
CreateMap<Core.Entities.SsoConfig, SsoConfig>().ReverseMap();
|
||||
}
|
||||
CreateMap<Core.Entities.SsoConfig, SsoConfig>().ReverseMap();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user