mirror of
https://github.com/bitwarden/server
synced 2025-12-13 14:53:34 +00:00
8 lines
158 B
C#
8 lines
158 B
C#
namespace Bit.SeederApi.Models.Response;
|
|
|
|
public class SeedResponseModel
|
|
{
|
|
public Guid? SeedId { get; set; }
|
|
public object? Result { get; set; }
|
|
}
|