mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
20 lines
343 B
C#
20 lines
343 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Bit.Core.Models.Table;
|
|
|
|
namespace Bit.Admin.Models
|
|
{
|
|
public class TransactionViewModel
|
|
{
|
|
public TransactionViewModel() { }
|
|
|
|
public TransactionViewModel(User user, IEnumerable<Cipher> ciphers)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
}
|
|
}
|