mirror of
https://github.com/bitwarden/server
synced 2025-12-25 12:43:14 +00:00
Run formatting (#2230)
This commit is contained in:
@@ -1,16 +1,15 @@
|
||||
using AutoMapper;
|
||||
|
||||
namespace Bit.Infrastructure.EntityFramework.Models
|
||||
{
|
||||
public class Grant : Core.Entities.Grant
|
||||
{
|
||||
}
|
||||
namespace Bit.Infrastructure.EntityFramework.Models;
|
||||
|
||||
public class GrantMapperProfile : Profile
|
||||
public class Grant : Core.Entities.Grant
|
||||
{
|
||||
}
|
||||
|
||||
public class GrantMapperProfile : Profile
|
||||
{
|
||||
public GrantMapperProfile()
|
||||
{
|
||||
public GrantMapperProfile()
|
||||
{
|
||||
CreateMap<Core.Entities.Grant, Grant>().ReverseMap();
|
||||
}
|
||||
CreateMap<Core.Entities.Grant, Grant>().ReverseMap();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user